diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-25 23:19:55 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-25 23:19:55 (EST) |
commit | 82412a5394acd18064ba62f85f2026a602e692b7 (patch) | |
tree | c97294812aaf3a01de352f6080c9d5e6fec9e710 /getmt86 | |
parent | 2ccadda5b6d1505c12d49fb1c9dcc0f9631a8ad4 (diff) | |
download | libreboot-82412a5394acd18064ba62f85f2026a602e692b7.zip libreboot-82412a5394acd18064ba62f85f2026a602e692b7.tar.gz libreboot-82412a5394acd18064ba62f85f2026a602e692b7.tar.bz2 |
scripts (all): replace unnecessary rm -rf with rm -f
Diffstat (limited to 'getmt86')
-rwxr-xr-x | getmt86 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |