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
This commit is contained in:
Daniel Stenberg 2020-06-10 23:40:00 +02:00
parent b304ba4c52
commit 38d4abf510
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
1 changed files with 1 additions and 1 deletions

View File

@ -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
}