summaryrefslogtreecommitdiffstats
path: root/resources/scripts/helpers/build/clean/grub
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-08-30 10:53:54 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-08-30 10:53:54 (EDT)
commit467d77bd0d191b38e5b2cc11e7ae4207fcb87b17 (patch)
tree4bde7e55ae3fb6910dc42a4853ad7cdd566364d5 /resources/scripts/helpers/build/clean/grub
parent82e5f8d5fc8aa8bfe013b84460b296ce188ab7da (diff)
downloadlibreboot-467d77bd0d191b38e5b2cc11e7ae4207fcb87b17.zip
libreboot-467d77bd0d191b38e5b2cc11e7ae4207fcb87b17.tar.gz
libreboot-467d77bd0d191b38e5b2cc11e7ae4207fcb87b17.tar.bz2
more scripts: don't use the [[ bashism
Diffstat (limited to 'resources/scripts/helpers/build/clean/grub')
-rwxr-xr-xresources/scripts/helpers/build/clean/grub2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/clean/grub b/resources/scripts/helpers/build/clean/grub
index af657f0..e4b4a65 100755
--- a/resources/scripts/helpers/build/clean/grub
+++ b/resources/scripts/helpers/build/clean/grub
@@ -30,7 +30,7 @@ set -u -e
cd "grub/"
printf "Cleaning the previous build of GRUB\n"
-[[ -f "Makefile" ]] && make distclean
+[ -f "Makefile" ] && make distclean
# done. go back to main directoy
cd "../"