From fd8fd52488d0e94af5034baf7a931f29a094b999 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Tue, 3 Sep 2024 12:15:39 +0200 Subject: [PATCH] fix(setup): update error messages --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 84702bb..293bed5 100755 --- a/setup.sh +++ b/setup.sh @@ -141,12 +141,12 @@ create_symlink() { elif $IGNORE_EXISTING; then return 0 else - error "path already exists:" + error "symbolic link already exists:" error "$dst" return 1 fi elif test -e "$dst"; then - error "path already exists and is not a symlink:" + error "path already exists that is not a symlink:" error "${dst}: $(stat -c '%F' -- "$dst")" return 1 fi