about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-03-30 11:28:59 +0100
committerSoispha <soispha@vhack.eu>2024-03-30 11:28:59 +0100
commit8396b01049f142c3fde68940ef1066bb756a3501 (patch)
treef107da3d985c8474e97538c33afba8e41bc8999d /hm
parentstyle(treewide): Format (diff)
downloadnixos-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-xhm/soispha/conf/lf/commands/scripts/mk_ln.sh2
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
     ;;