[OpenWrt-Devel] [PATCH 01/17] gen_mvebu_sdcard_img.sh: Replace let with $(())
Rosen Penev
rosenp at gmail.com
Mon Nov 25 17:44:46 EST 2019
let is a bashism.
Found with shellcheck.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
target/linux/mvebu/image/gen_mvebu_sdcard_img.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh b/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh
index 100a9a96e5..c93a2bd6e2 100755
--- a/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh
+++ b/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh
@@ -79,6 +79,6 @@ while [ "$#" -ge 2 ]; do
) | dd of="$OUTFILE" bs=512 seek=$(($1 / 512)) conv=notrunc 2>/dev/null
printf "Done\n"
- let i=i+1
+ i=$((i+1))
shift; shift
done
--
2.23.0
_______________________________________________
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