diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-04-20 22:39:20 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-04-20 23:00:21 -0400 |
commit | 23213bda24af601acbbea5731246a055680b48d0 (patch) | |
tree | 09fe7c18f2d5cecca569658c4968357274392769 /src/xbs | |
parent | d958a33c1f0e11b770481a9188cbf75cc3bfd0a5 (diff) |
Variables inside of $((...)) don't need a $ in front of them.
These were found with the help of shellcheck.
Diffstat (limited to 'src/xbs')
-rwxr-xr-x | src/xbs/xbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xbs/xbs b/src/xbs/xbs index ad2fbe0..7200800 100755 --- a/src/xbs/xbs +++ b/src/xbs/xbs @@ -137,7 +137,7 @@ main() { *) errusage;; esac done - shift $(($OPTIND - 1)) + shift $((OPTIND - 1)) if [[ -z $BUILDSYSTEM ]]; then load_files xbs || return 1 |