summaryrefslogtreecommitdiffstats
path: root/resources/utilities
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-11-05 14:27:53 (EST)
committer Francis Rowe <info@gluglug.org.uk>2015-11-05 14:27:53 (EST)
commit5f46ca4dd142548cdabd0d507fa891429aa696a6 (patch)
treef34b8cff656745ba8cbeae79d7fd6b4bc492246f /resources/utilities
parent0fb52ba55c21b6ecbb7bd06b97c78c090e980aad (diff)
downloadlibreboot-5f46ca4dd142548cdabd0d507fa891429aa696a6.zip
libreboot-5f46ca4dd142548cdabd0d507fa891429aa696a6.tar.gz
libreboot-5f46ca4dd142548cdabd0d507fa891429aa696a6.tar.bz2
grub-assemble: remove a bashism
Diffstat (limited to 'resources/utilities')
-rwxr-xr-xresources/utilities/grub-assemble/gen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/utilities/grub-assemble/gen.sh b/resources/utilities/grub-assemble/gen.sh
index 0182c2e..55bae84 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"