diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-07 03:05:02 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-07 03:05:02 +0100 |
commit | f94fb1b5226781551051daa3761919346e8c4b3e (patch) | |
tree | 9b0da490373654df8890af8c77e91a3597f3a6cf /resources/scripts/helpers/download/coreboot | |
parent | 52b05b1595415f60cf8a73931db23cf500f0956b (diff) | |
download | librebootfr-f94fb1b5226781551051daa3761919346e8c4b3e.tar.gz librebootfr-f94fb1b5226781551051daa3761919346e8c4b3e.zip |
Replace rm -r with rm -R
Diffstat (limited to 'resources/scripts/helpers/download/coreboot')
-rwxr-xr-x | resources/scripts/helpers/download/coreboot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/scripts/helpers/download/coreboot b/resources/scripts/helpers/download/coreboot index ad358b0d..ab610740 100755 --- a/resources/scripts/helpers/download/coreboot +++ b/resources/scripts/helpers/download/coreboot @@ -32,7 +32,7 @@ printf "Downloading coreboot, patching coreboot and deblobbing coreboot\n" # Remove the old version that may exist # ------------------------------------------------------------------------------ -rm -rf coreboot +rm -Rf coreboot # Get latest coreboot: # ------------------------------------------------------------------------------ @@ -140,7 +140,7 @@ git am ../resources/libreboot/patch/0023-lenovo-x200-Enable-wacom-digitizer-supp # ------------------------------------------------------------------------------ printf "Deleting .git* in coreboot/ (history inside .git contains the blobs that were deleted)\n" -rm -rf .git +rm -Rf .git rm -f .gitreview rm -f .gitmodules rm -f .gitignore |