fix(setup): fix check for symlink

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