Skip to content

Commit

Permalink
Fix build script to create include directory if it doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
savaughn committed May 17, 2024
1 parent ef6169f commit 2a78efb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ jobs:
make
- name: Bundle library
shell: bash
run: |
mkdir -p build/release/include/pksav
if [[ ! -d build/release/include/pksav ]]; then
mkdir -p build/release/include/pksav
fi
cp -r build_static/lib/libpksav.a build/release
cp -r build_dynamic/lib/libpksav.dll build/release
cp -r include/* build/release/include
Expand Down

0 comments on commit 2a78efb

Please sign in to comment.