Skip to content

Commit 9e618cf

Browse files
committed
etc: modify adb_run_wrapper.sh to avoid 'expr' unrecognization at some android devices
1 parent 4efb17f commit 9e618cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/adb_run_wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ then
2626
/system/bin/sleep $WAIT
2727
/system/bin/sync
2828
fi
29-
L_COUNT=`expr $L_COUNT+1`
29+
L_COUNT=$((L_COUNT+1))
3030
done
3131

3232
echo $L_RET > $PATH/$RUN.exitcode

0 commit comments

Comments
 (0)