diff options
author | Tharre <tharre3@gmail.com> | 2018-06-09 22:46:29 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-09 22:46:29 +0200 |
commit | 4126518fbc5df125ae0da112a07a8c7b6f9ce559 (patch) | |
tree | e300d3ad131a8095a5fd49510e495750e0e9c72b | |
parent | a9c5b08375b37dc14f9bd8734dc4e4af20ba8b2b (diff) | |
download | dotfiles-4126518fbc5df125ae0da112a07a8c7b6f9ce559.tar.gz dotfiles-4126518fbc5df125ae0da112a07a8c7b6f9ce559.tar.xz dotfiles-4126518fbc5df125ae0da112a07a8c7b6f9ce559.zip |
Only symlink files to `~/bin`, not directories
-rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ done chmod 700 .gnupg mkdir -p ~/bin -find "$(pwd)/bin" -maxdepth 1 ! -path . -exec ln -sf {} ~/bin/ \; +find "$(pwd)/bin" -maxdepth 1 -type f -exec ln -sf {} ~/bin/ \; # remove broken symlinks find -L "$HOME" -maxdepth 1 -type l -delete |