about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-09-26 13:02:27 -0400
committerCharadon <dev@iotib.net>2022-09-26 13:02:27 -0400
commitc0ec0a06c9799405665a0aa7f0f3f2d19a5e27ed (patch)
treed1c4737a587bfd2544b74728ba1359c50d06e578
parent995e5ebe1bd141676fbde2d15ec267e99e88d0b3 (diff)
downloadPong-C-c0ec0a06c9799405665a0aa7f0f3f2d19a5e27ed.tar.gz
distribute.sh: Fix issue where files aren't grabbed recursively
-rwxr-xr-xdistribute.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/distribute.sh b/distribute.sh
index 6d65f78..e42357e 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 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