diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-06 22:05:02 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-06 22:05:02 (EDT) |
commit | f94fb1b5226781551051daa3761919346e8c4b3e (patch) | |
tree | 9b0da490373654df8890af8c77e91a3597f3a6cf /resources/scripts/helpers/build/roms | |
parent | 52b05b1595415f60cf8a73931db23cf500f0956b (diff) | |
download | libreboot-f94fb1b5226781551051daa3761919346e8c4b3e.zip libreboot-f94fb1b5226781551051daa3761919346e8c4b3e.tar.gz libreboot-f94fb1b5226781551051daa3761919346e8c4b3e.tar.bz2 |
Replace rm -r with rm -R
Diffstat (limited to 'resources/scripts/helpers/build/roms')
-rwxr-xr-x | resources/scripts/helpers/build/roms/helper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/scripts/helpers/build/roms/helper b/resources/scripts/helpers/build/roms/helper index aa2dcc7..a89ea57 100755 --- a/resources/scripts/helpers/build/roms/helper +++ b/resources/scripts/helpers/build/roms/helper @@ -103,20 +103,20 @@ do done # This config-less ROM is no longer needed - rm -rf "$1"_"$romtype".rom + rm -Rf "$1"_"$romtype".rom done # Now we clean up and prepare the bin directory containing all the images # ---------------------------------------------------------------------------------------------------------------------------- # prepare directory for new ROM images -rm -rf "$1" +rm -Rf "$1" mkdir "$1" # move the ROM's into the newly created directory mv "$1"*rom "$1" # delete the old ROM's from ../bin -rm -rf ../bin/"$1" +rm -Rf ../bin/"$1" # now put the new ROM's in ./bin mv "$1" ../bin |