summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/external
diff options
context:
space:
mode:
authorFrancis 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)
commitf94fb1b5226781551051daa3761919346e8c4b3e (patch)
tree9b0da490373654df8890af8c77e91a3597f3a6cf /resources/scripts/helpers/build/external
parent52b05b1595415f60cf8a73931db23cf500f0956b (diff)
downloadlibreboot-f94fb1b5226781551051daa3761919346e8c4b3e.zip
libreboot-f94fb1b5226781551051daa3761919346e8c4b3e.tar.gz
libreboot-f94fb1b5226781551051daa3761919346e8c4b3e.tar.bz2
Replace rm -r with rm -R
Diffstat (limited to 'resources/scripts/helpers/build/external')
-rwxr-xr-xresources/scripts/helpers/build/external/source4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/helpers/build/external/source b/resources/scripts/helpers/build/external/source
index 31dc2fd..e6b9209 100755
--- a/resources/scripts/helpers/build/external/source
+++ b/resources/scripts/helpers/build/external/source
@@ -26,7 +26,7 @@ set -u -e
printf "Creating source archive for flashrom and bucts\n"
# delete the old data
-rm -rf tobuild
+rm -Rf tobuild
rm -f tobuild.tar.xz
# this is where they will go
@@ -68,6 +68,6 @@ cp resources/scripts/misc/powertop.trisquel7 tobuild/
tar -c tobuild | xz -9e >tobuild.tar.xz
# and delete the directory
-rm -rf tobuild/
+rm -Rf tobuild/
printf "\n\n"