summary refs log tree commit diff
path: root/prune.zsh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xprune.zsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/prune.zsh b/prune.zsh
index 928fe066..db85a9d1 100755
--- a/prune.zsh
+++ b/prune.zsh
@@ -2,6 +2,6 @@
 set -o errexit -o nounset -o pipefail
 
 find -L ~ -type l -lname "$PWD/*" | while read -r linkPath; do
-    rm "$linkPath"
-    echo "$linkPath"
+	rm "$linkPath"
+	echo "$linkPath"
 done