aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-20 17:15:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-20 17:15:42 +1200
commit48db433b1dfb676a7822bc2db333cc3eb7ddb013 (patch)
tree0eca24326051f3fdd14c0674b1169a3cfbceb474 /install
parentWrapper for pushd defaults to $HOME if no args (diff)
downloaddotfiles-48db433b1dfb676a7822bc2db333cc3eb7ddb013.tar.gz
dotfiles-48db433b1dfb676a7822bc2db333cc3eb7ddb013.zip
Remove unneeded quoting in case statement
Wordsplitting is not done for case <WORD>: <http://wiki.bash-hackers.org/syntax/ccmd/case>
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index a34d5e36..389531ff 100755
--- a/install
+++ b/install
@@ -33,7 +33,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"