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 /getcb | |
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 'getcb')
-rwxr-xr-x | getcb | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -78,9 +78,9 @@ echo "deblobbing coreboot" # The git history (git diff command) shows what blobs were deleted (including the blobs themselves) which is a freedom issue. Just delete .git altogether: cd coreboot rm -rf .git -rm -rf .gitreview -rm -rf .gitmodules -rm -rf .gitignore +rm -f .gitreview +rm -f .gitmodules +rm -f .gitignore cd ../ echo "finished deblobbing coreboot" |