fix(setup): fix check for symlink

This commit is contained in:
Oscar Wallberg
2024-08-03 03:57:04 +02:00
parent 0069028c07
commit 6af7e68509
+1 -1
View File
@@ -130,7 +130,7 @@ create_symlink() {
mkdir -p "$dst_parent" mkdir -p "$dst_parent"
fi fi
if test -s "$dst"; then if test -L "$dst"; then
if $IGNORE_EXISTING; then if $IGNORE_EXISTING; then
remove_symlink "$2" remove_symlink "$2"
else else