diff options
author | Charadon <dev@iotib.net> | 2022-09-26 13:03:46 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-09-26 13:03:46 -0400 |
commit | 1213f42cc1e0d8ab1db1a33ccaf7c85923e2feb3 (patch) | |
tree | b1dfab9105111c922c2880d5fd64a979d793a3a8 | |
parent | c0ec0a06c9799405665a0aa7f0f3f2d19a5e27ed (diff) | |
download | Pong-C-1213f42cc1e0d8ab1db1a33ccaf7c85923e2feb3.tar.gz |
distribute.sh: Actually fixed recursive issue
-rwxr-xr-x | distribute.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribute.sh b/distribute.sh index e42357e..c67faa9 100755 --- a/distribute.sh +++ b/distribute.sh @@ -36,9 +36,9 @@ cd "$CONFIG_INSTALL_PREFIX" # Tarball the finish result! if [ "$WINDOWS" = "true" ]; then - zip Pong_"$(uname)-$(uname -r)-$(uname -m)".zip -- ** + zip -r Pong_"$(uname)-$(uname -r)-$(uname -m)".zip -- * exit 0 else rm libs/libGL* # Remove OpenGL as it conflicts with graphics drivers. - bsdtar -caf ../Pong_"$(uname -s)-$(uname -r)-$(uname -m)".txz -- ** + bsdtar -caf ../Pong_"$(uname -s)-$(uname -r)-$(uname -m)".txz -- * fi |