From 626ae973644c16c37ae8985857eade9648ba2364 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 28 Mar 2018 13:25:19 -0400 Subject: Fix shell script lints --- prune.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prune.zsh') 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 -- cgit 1.4.1