From 82412a5394acd18064ba62f85f2026a602e692b7 Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Tue, 25 Nov 2014 23:19:55 -0500 Subject: scripts (all): replace unnecessary rm -rf with rm -f --- (limited to 'getgrubinvaders') diff --git a/getgrubinvaders b/getgrubinvaders index 30050b6..fcaf7b9 100755 --- a/getgrubinvaders +++ b/getgrubinvaders @@ -41,7 +41,7 @@ wget http://www.erikyyy.de/invaders/invaders-1.0.0.tar.gz tar -xf "invaders-1.0.0.tar.gz" # delete the tar file (no longer needed) -rm -rf "invaders-1.0.0.tar.gz" +rm -f "invaders-1.0.0.tar.gz" # rename directory (for consistency with script names) mv invaders grubinvaders @@ -59,8 +59,8 @@ patch < diff.patch patch compile.sh < compile.sh.patch # delete the copy of the patch (no longer needed) -rm -rf diff.patch -rm -rf compile.sh.patch +rm -f diff.patch +rm -f compile.sh.patch # we're done cd ../ -- cgit v0.9.1