aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rwxr-xr-xinstall4
1 files changed, 2 insertions, 2 deletions
diff --git a/install b/install
index 7af58271..eb5819e7 100755
--- a/install
+++ b/install
@@ -34,7 +34,7 @@ ln -insv -- "$dotfiles/vim" "$HOME/.vim"
# Link in shell stuff
while getopts :gmntx opt
do
- case $opt in
+ case "$opt" in
g)
mkdir -pv -- "$HOME/.gnupg"
ln -insv -- "$dotfiles/gnupg/gpg.conf" "$HOME/.gnupg"
@@ -62,5 +62,5 @@ do
;;
esac
done
-shift $((OPTIND-1))
+shift "$((OPTIND-1))"