From 0f054313e35d86cf0f7eca485cb9c2f4b1732422 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 3 Sep 2020 10:17:29 +0300 Subject: [PATCH] kiss-link: Fix bug. Closes #180 --- contrib/kiss-link | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/kiss-link b/contrib/kiss-link index d0cdf39..efb5c30 100755 --- a/contrib/kiss-link +++ b/contrib/kiss-link @@ -40,7 +40,7 @@ kiss s "${PWD##*/}" >/dev/null # Finally, make the link to the file in whatever repository # it was found in. - ln -sf "$1/$file" "$file" + ln -sf "$1/$file" "$oPWD/$file" } printf 'linked %s to %s\n' "$file" "$1"