diff options
author | June McEnroe <programble@gmail.com> | 2017-05-01 17:32:07 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-05-01 17:32:07 -0400 |
commit | 8f0b36f1a8229b380d048e667590e814c94e21b9 (patch) | |
tree | d9fff6c0cd9d85ad80179fff1a1f7964b6305047 | |
parent | Clean up SSH config (diff) | |
download | src-8f0b36f1a8229b380d048e667590e814c94e21b9.tar.gz src-8f0b36f1a8229b380d048e667590e814c94e21b9.zip |
Fix prune script
The for loop was overriding zsh's $path variable, causing it to not be able to find rm.
Diffstat (limited to '')
-rwxr-xr-x | prune.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/prune.sh b/prune.sh index cc6e2444..361e1a97 100755 --- a/prune.sh +++ b/prune.sh @@ -4,9 +4,9 @@ set -o errexit -o nounset -o pipefail -paths=$(find -L ~ -type l -lname "$PWD/*") +links=$(find -L ~ -type l -lname "$PWD/*") -for path in $paths; do - rm "$path" - echo "$path" +for link in $links; do + rm "$link" + echo "$link" done |