1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
This commit is contained in:
Luflosi 2025-03-27 12:51:14 +01:00 committed by GitHub
commit bb2ffe1261
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -295,7 +295,7 @@ in
if [[ -d $source ]]; then
if [[ $recursive ]]; then
mkdir -p "$target"
lndir -silent "$source" "$target"
lndir -silent -ignorelinks "$source" "$target"
else
ln -s "$source" "$target"
fi