Skip to content

Commit

Permalink
fixed: bundling tarball including non-existent directory
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanfh committed Jan 18, 2024
1 parent 66577d0 commit 1fbdbfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ compress_all() {

if [ ! -z ${ONYX_RUNTIME_LIBRARY+x} ]; then
# When including a runtime library, include the lib and include folders
tar -C "$DIST_DIR" -zcvf onyx.tar.gz bin core examples include lib misc tests tools LICENSE
tar -C "$DIST_DIR" -zcvf onyx.tar.gz bin core examples include lib misc tools LICENSE
else
tar -C "$DIST_DIR" -zcvf onyx.tar.gz bin core examples misc tests tools LICENSE
tar -C "$DIST_DIR" -zcvf onyx.tar.gz bin core examples misc tools LICENSE
fi

mv onyx.tar.gz dist/
Expand Down

0 comments on commit 1fbdbfa

Please sign in to comment.