From 7018cfb9e65efef156752007e4caaf6ad876f729 Mon Sep 17 00:00:00 2001 From: raute Date: Fri, 1 Dec 2023 16:54:33 +0100 Subject: [PATCH] link.sh: Improve error message. --- link.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link.sh b/link.sh index 459ae8f..8359311 100755 --- a/link.sh +++ b/link.sh @@ -15,7 +15,7 @@ link() { fi if [ -e "$dst" ] && [ ! -L "$dst" ]; then - echo "Destination exists and is not a symlink." >&2 + echo "Destination exists and is not a symlink: $dst" >&2 exit 4 fi