aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-26 16:34:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-26 16:34:08 +1200
commita37f0aefaebc89ecda620b57a45abaa9fd01550b (patch)
treed8d7d0e8d1071fa8a2ff25662ddfe7748619db43 /install
parentMore conservative expansions for install script (diff)
downloaddotfiles-a37f0aefaebc89ecda620b57a45abaa9fd01550b.tar.gz
dotfiles-a37f0aefaebc89ecda620b57a45abaa9fd01550b.zip
Don't expand arithmetic operation on OPTIND
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index 9b469863..05f8bbf4 100755
--- a/install
+++ b/install
@@ -61,5 +61,5 @@ while getopts :gmntx opt; do
;;
esac
done
-shift "$((OPTIND-1))"
+shift $((OPTIND-1))