Fix wrong quote character

This commit is contained in:
Augusto Gunsch
2021-08-20 14:45:35 -03:00
parent 57f4acf73f
commit cd27268915

View File

@@ -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
}