diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 19:27:53 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 19:27:53 +0000 |
commit | 5f46ca4dd142548cdabd0d507fa891429aa696a6 (patch) | |
tree | f34b8cff656745ba8cbeae79d7fd6b4bc492246f /resources/utilities/grub-assemble | |
parent | 0fb52ba55c21b6ecbb7bd06b97c78c090e980aad (diff) | |
download | librebootfr-5f46ca4dd142548cdabd0d507fa891429aa696a6.tar.gz librebootfr-5f46ca4dd142548cdabd0d507fa891429aa696a6.zip |
grub-assemble: remove a bashism
Diffstat (limited to 'resources/utilities/grub-assemble')
-rwxr-xr-x | resources/utilities/grub-assemble/gen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/utilities/grub-assemble/gen.sh b/resources/utilities/grub-assemble/gen.sh index 0182c2e6..55bae843 100755 --- a/resources/utilities/grub-assemble/gen.sh +++ b/resources/utilities/grub-assemble/gen.sh @@ -21,7 +21,7 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -if (( $# != 1 )); then +if [ $# != 1 ]; then printf "Usage: ./gen.sh mode\n" printf "Example: ./gen.sh vesafb\n" printf "Example: ./gen.sh txtmode\n" |