summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-08-29 12:27:02 -0500
committerMitsuo Tokumori <[email protected]>2023-08-29 12:27:02 -0500
commit4e3ceb5dd9c58a3456208447072cb5a3732c51b3 (patch)
tree76f9c149a91d1dd019bd87c8a87cd3cac9e8ec0b
parent1f420f1358211a6646f0665f60a143720f27208a (diff)
downloaddotfiles-4e3ceb5dd9c58a3456208447072cb5a3732c51b3.tar.gz
dotfiles-4e3ceb5dd9c58a3456208447072cb5a3732c51b3.tar.bz2
dotfiles-4e3ceb5dd9c58a3456208447072cb5a3732c51b3.zip
Fix ambiguitiy in `ln -s` directorywise commands
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 6dbcab3..281750f 100755
--- a/install.sh
+++ b/install.sh
@@ -109,19 +109,19 @@ fi
# -------------
if prompt "nvim"; then
- eval $cp_or_ln " ${PWD}/nvim $XDG_CONFIG_HOME/nvim"
+ eval $cp_or_ln " ${PWD}/nvim $XDG_CONFIG_HOME"
fi
if prompt "tmux"; then
- eval $cp_or_ln " ${PWD}/tmux $XDG_CONFIG_HOME/tmux"
+ eval $cp_or_ln " ${PWD}/tmux $XDG_CONFIG_HOME"
fi
if prompt "zathura"; then
- eval $cp_or_ln " ${PWD}/zathura $XDG_CONFIG_HOME/zathura"
+ eval $cp_or_ln " ${PWD}/zathura $XDG_CONFIG_HOME"
fi
if prompt "mpv"; then
- eval $cp_or_ln " ${PWD}/mpv $XDG_CONFIG_HOME/mpv"
+ eval $cp_or_ln " ${PWD}/mpv $XDG_CONFIG_HOME"
fi
echo "all done :)"