From f94fb1b5226781551051daa3761919346e8c4b3e Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 06 Jun 2015 22:05:02 -0400 Subject: Replace rm -r with rm -R --- (limited to 'resources/scripts/helpers/build/roms') 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 -- cgit v0.9.1