about summary refs log tree commit diff stats
path: root/distribute.sh
diff options
context:
space:
mode:
Diffstat (limited to 'distribute.sh')
-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