Skip to content

Commit

Permalink
Fix stupid thinko in commit d0ad515
Browse files Browse the repository at this point in the history
`find` options all have just one dash. Regression of a regression, sigh.
  • Loading branch information
pmatilai committed Mar 3, 2022
1 parent b8935fb commit 5766d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/brp-compress
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ do
}
done

find $d -type l --print0 |
find $d -type l -print0 |
while IFS= read -r -d '' f; do
l=`ls -l $f | sed -e 's/.* -> //' -e 's/\.\(gz\|Z\|bz2\|xz\|lzma\|zst\|zstd\)$//'`
rm -f $f
Expand Down

0 comments on commit 5766d3c

Please sign in to comment.