diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-10 23:40:00 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-10 23:40:00 +0200 |
commit | 38d4abf5103c1abbe0f409d342ebb4e71404b7e9 (patch) | |
tree | 1088dbb66240d9dffbf3269f0ab41e21bd8816ec /buildconf | |
parent | b304ba4c52b2927624d664776a588ed18b8c4703 (diff) | |
download | curl-38d4abf5103c1abbe0f409d342ebb4e71404b7e9.tar.gz |
buildconf: remove -print from the find command that removes files
It's just too annoying and unnecessary to get a long list of files shown
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ findtool(){ # removethis(){ if test "$#" = "1"; then - find . -depth -name $1 -print -exec rm -rf {} \; + find . -depth -name $1 -exec rm -rf {} \; fi } |