about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xdistribute.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/distribute.sh b/distribute.sh
index 3293160..fe7ed5b 100755
--- a/distribute.sh
+++ b/distribute.sh
@@ -94,10 +94,10 @@ then
 else
 	set +e
 	# Remove GL drivers, as they almost always conflict with system driver.
-	rm libs/libGL*
-	rm libs/libdrm*
+	rm -f libs/libGL*
+	rm -f libs/libdrm*
 	# Remove libstdc++
-	rm libs/libstdc++*
+	rm -f libs/libstdc++*
 	set -e
 	bsdtar --options gzip:compression-level=9 -caf ../Pong_"$(uname -s)-$(uname -r)-$(uname -m)".tgz -- *
 fi