From 1fbdbfa3638b16e04caa69d8d3097e7336906d9a Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Wed, 17 Jan 2024 21:29:25 -0600 Subject: [PATCH] fixed: bundling tarball including non-existent directory --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index acda65dc..887722af 100755 --- a/build.sh +++ b/build.sh @@ -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/ -- 2.25.1