From 61a01bf297bd9aa58bcc57b7852e178089c0b16e Mon Sep 17 00:00:00 2001 From: kento2 Date: Wed, 25 Feb 2026 17:44:08 +0100 Subject: [PATCH] fix setup.sh link creation --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index ae880cb..04561a5 100755 --- a/setup.sh +++ b/setup.sh @@ -30,7 +30,7 @@ while read -r path; do continue fi - ln -fs "$(realpath "$path")" "$HOME/$path" + ln -fs "$(realpath "$HOME/$path")" "$HOME/$path" echo "[x] created symlink $path -> $HOME/$path" fi done