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