This commit is contained in:
2026-06-18 22:43:32 +02:00
parent 61b31e2553
commit af0a725e72
+1 -1
View File
@@ -11,7 +11,7 @@ function symlink() {
echo "Creating symlink ($arrow) ..."
local current_target
current_target=$(readlink "$link")
current_target=$(readlink "$link" || true)
# link is already correct
if [ -L "$link" ] && [ "$current_target" == "$target" ]; then