From 61c3e1c9031fd1161329ead04a69ebe9fee9b3bb Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Mon, 3 Jun 2024 18:24:50 +0200 Subject: [PATCH] Add nice arrow (link() function) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a028e54b..f410e267 100755 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ function link() { if [ -a "${HOME}/${2}" ]; then [[ -n "$VERBOSE_WARNING" ]] && echo ":: Warning: ${2} already exists." else - echo ":: Linking ${2}" + echo ":: Linking ${1} -> ${2}" ln -s "$(pwd)/${1}" "${HOME}/${2}" fi }