diff options
Diffstat (limited to 'init')
-rwxr-xr-x | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ set homedirs dot-config dot-local-bin for dir in $homedirs set -l target_base $HOME/(string replace '-' '/' (string replace -r '^dot-' '.' $dir)) - for file in (find $dir -type f) + for file in (find -L $dir -type f) set -l src "$(pwd)/$file" set -l dst (string replace -r "^$dir/" "$target_base/" $file) if [ -L $dst -a "$(readlink $dst)" = $src ] |