summaryrefslogtreecommitdiffstats
path: root/ln.sh
diff options
context:
space:
mode:
authorChristoph Schlosser <cschlosser@google.com>2025-06-16 10:23:31 +0000
committerChristoph Schlosser <cschlosser@google.com>2025-06-17 07:07:15 +0000
commitbe4e5c7a9ac4c4d7b36725a5b40ca20fc9c7d6e5 (patch)
tree6e3fc6ae5503ed669ee5736b6874ed312297ffdf /ln.sh
parentab5b5a0e22272876800bc9a1aca5861d955f2c12 (diff)
downloaddots-be4e5c7a9ac4c4d7b36725a5b40ca20fc9c7d6e5.tar.gz
Fix symlink script
Diffstat (limited to 'ln.sh')
-rwxr-xr-xln.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ln.sh b/ln.sh
index e7e38d6..1c27db1 100755
--- a/ln.sh
+++ b/ln.sh
@@ -1,5 +1,5 @@
#!/bin/bash
for dir in bat fzf ripgrep fish nvim; do
- ln -s "~/dots/$dir" ~/.config/
+ ln -s ~/dots/"$dir" ~/.config/
done