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 'getmt86') diff --git a/getmt86 b/getmt86 index 40412ae..7ee2298 100755 --- a/getmt86 +++ b/getmt86 @@ -41,7 +41,7 @@ wget http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz tar -xf "memtest86+-5.01.tar.gz" # delete the tar file (no longer needed) -rm -rf "memtest86+-5.01.tar.gz" +rm -f "memtest86+-5.01.tar.gz" # there are modifications required cd "memtest86+-5.01" @@ -59,11 +59,11 @@ cd "memtest86+-5.01" # #define BEEP_MODE 1 # place the right config -rm -rf config.h +rm -f config.h cp ../resources/memtest86/patch/config.h . # place the right Makefile -rm -rf Makefile +rm -f Makefile cp ../resources/memtest86/patch/Makefile . # (diff them with defaults to see what changed) -- cgit v0.9.1