From cd27268915c43bb6a5315d2299a6d047a6f6fcf5 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Fri, 20 Aug 2021 14:45:35 -0300 Subject: [PATCH] Fix wrong quote character --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 42aa86c..5988ba7 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ clone_dir() { if [ -d "$f" ]; then clone_dir "$f" "$to" elif [ -f "$f" ]; then - ln -sf '$PWD/$f' '$to/.${f#home/}' + ln -sf "$PWD/$f" "$to/.${f#home/}" fi done }