diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 15:53:54 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-30 15:53:54 +0100 |
commit | 467d77bd0d191b38e5b2cc11e7ae4207fcb87b17 (patch) | |
tree | 4bde7e55ae3fb6910dc42a4853ad7cdd566364d5 /resources/scripts/helpers/build/module | |
parent | 82e5f8d5fc8aa8bfe013b84460b296ce188ab7da (diff) | |
download | librebootfr-467d77bd0d191b38e5b2cc11e7ae4207fcb87b17.tar.gz librebootfr-467d77bd0d191b38e5b2cc11e7ae4207fcb87b17.zip |
more scripts: don't use the [[ bashism
Diffstat (limited to 'resources/scripts/helpers/build/module')
-rwxr-xr-x | resources/scripts/helpers/build/module/grub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/grub b/resources/scripts/helpers/build/module/grub index 0e424a4a..47589d54 100755 --- a/resources/scripts/helpers/build/module/grub +++ b/resources/scripts/helpers/build/module/grub @@ -33,7 +33,7 @@ printf "Building GRUB\n" cd "grub/" # clean it first -[[ -f Makefile ]] && make distclean +[ -f Makefile ] && make distclean # build grub ./autogen.sh |