[OpenWrt-Devel] [PATCHv2 1/2] scripts/gen_image_generic.sh: Replace -o with ||
Rosen Penev
rosenp at gmail.com
Wed Jan 1 18:01:47 EST 2020
-o is not well defined.
Found with shellcheck.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
v2: Switched to -ne instead of ! -eq
scripts/gen_image_generic.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/gen_image_generic.sh b/scripts/gen_image_generic.sh
index 2c57d56f07..814d81d014 100755
--- a/scripts/gen_image_generic.sh
+++ b/scripts/gen_image_generic.sh
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
# Copyright (C) 2006-2012 OpenWrt.org
set -e -x
-[ $# == 5 -o $# == 6 ] || {
+if [ $# -ne 5 ] || [ $# -ne 6 ]; then
echo "SYNTAX: $0 <file> <kernel size> <kernel directory> <rootfs size> <rootfs image> [<align>]"
exit 1
-}
+fi
OUTPUT="$1"
KERNELSIZE="$2"
--
2.24.1
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list