Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKang-Che Sung <explorer09@gmail.com>2017-07-15 06:38:58 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 20:20:45 +0300
commited2b9225371a36dd2694df65e395dc32fd94c5dd (patch)
tree55ec9e9e50b63aba14fa22c1524391e55d977d96 /examples
parentc4ddf04b6898c218b08251d81d30c3a2d587b10c (diff)
make_single_applets: fix ": $((fail++))" expansion error
$((fail++)) is not a required expression in POSIX, and in "dash" it could produce an error like this: ./make_single_applets.sh: 61: arithmetic expression: expecting primary: "fail++" Replace this with something portable: fail=$((fail+1)) would work. Signed-off-by: Kang-Che Sung <explorer09@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples')
0 files changed, 0 insertions, 0 deletions