diff options
author | Tharre <tharre3@gmail.com> | 2015-04-06 16:47:41 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-07 19:43:04 +0000 |
commit | acec706874ad8a59ba75b5784848f9bca1dce6e6 (patch) | |
tree | 3b788c1b48b9334e00f44a281501029b079fe376 /install.sh | |
parent | 6c9ecd4bc57a318f9b8663cb476efa2945de716b (diff) | |
download | dotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.tar.gz dotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.tar.xz dotfiles-acec706874ad8a59ba75b5784848f9bca1dce6e6.zip |
Quote paths to honor whitespaces in them
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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" |