summary refs log tree commit diff
path: root/prune.sh
diff options
context:
space:
mode:
Diffstat (limited to 'prune.sh')
-rw-r--r--prune.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/prune.sh b/prune.sh
index d41c6bc6..fabe865f 100644
--- a/prune.sh
+++ b/prune.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -eu
 
-find -L ~ -type l -lname "${PWD}/*" | while read -r link; do
+find -L ~/.config ~/.local -type l -lname "${PWD}/*" | while read -r link; do
 	echo "$link"
 	rm "$link"
 done