about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-10-06 21:29:22 -0400
committerCharadon <dev@iotib.net>2022-10-06 21:29:22 -0400
commit952d9f9b9c4ed0a09e764e8eee86745a1ff23a21 (patch)
tree86088acd0db2b304c1fe4e604511ae26c2e6f81d
parent3fd349dd582a17da7a3644055619b6db04f51bde (diff)
downloadPong-C-952d9f9b9c4ed0a09e764e8eee86745a1ff23a21.tar.gz
distribute.sh: Added -f to rm arguments when deleting libraries.
-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