summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-04-06 16:47:41 +0200
committerTharre <tharre3@gmail.com>2016-10-07 19:43:04 +0000
commitacec706874ad8a59ba75b5784848f9bca1dce6e6 (patch)
tree3b788c1b48b9334e00f44a281501029b079fe376 /install.sh
parent6c9ecd4bc57a318f9b8663cb476efa2945de716b (diff)
downloaddotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.tar.gz
dotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.tar.xz
dotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.zip
Quote paths to honor whitespaces in them
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/install.sh b/install.sh
index 1a84e69..2636c86 100755
--- a/install.sh
+++ b/install.sh
@@ -6,19 +6,19 @@ root=$(pwd)
git submodule update --init
# [zsh]
-ln -sf $root/shell/_zshrc $HOME/.zshrc
-ln -sfT $root/shell/_oh-my-zsh $HOME/.oh-my-zsh
+ln -sf "$root/shell/_zshrc" "$HOME/.zshrc"
+ln -sfT "$root/shell/_oh-my-zsh" "$HOME/.oh-my-zsh"
# [emacs]
-ln -sfT $root/dotEmacs $HOME/.emacs.d
+ln -sfT "$root/dotEmacs" "$HOME/.emacs.d"
# [vim]
-ln -sf $root/shell/_vimrc $HOME/.vimrc
+ln -sf "$root/shell/_vimrc" "$HOME/.vimrc"
# [git]
-ln -sf $root/shell/_gitconfig $HOME/.gitconfig
+ln -sf "$root/shell/_gitconfig" "$HOME/.gitconfig"
# [tmux]
-ln -sf $root/shell/_tmux.conf $HOME/.tmux.conf
+ln -sf "$root/shell/_tmux.conf" "$HOME/.tmux.conf"
echo "Finished installing dotfiles"