diff options
author | Soispha <soispha@vhack.eu> | 2024-03-30 11:28:59 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-30 11:28:59 +0100 |
commit | 8396b01049f142c3fde68940ef1066bb756a3501 (patch) | |
tree | f107da3d985c8474e97538c33afba8e41bc8999d /hm | |
parent | style(treewide): Format (diff) | |
download | nixos-config-8396b01049f142c3fde68940ef1066bb756a3501.tar.gz nixos-config-8396b01049f142c3fde68940ef1066bb756a3501.zip |
feat(hm/conf/lf/cmd/make_link): Always make relative links
Diffstat (limited to 'hm')
-rwxr-xr-x | hm/soispha/conf/lf/commands/scripts/mk_ln.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/lf/commands/scripts/mk_ln.sh b/hm/soispha/conf/lf/commands/scripts/mk_ln.sh index e5ed15d2..7fab8e22 100755 --- a/hm/soispha/conf/lf/commands/scripts/mk_ln.sh +++ b/hm/soispha/conf/lf/commands/scripts/mk_ln.sh @@ -35,7 +35,7 @@ copy) read -r ans done - ln -s "$file" "$(pwd)/$ans" + ln --symbolic --relative "$file" "$(pwd)/$ans" shift done ;; |