From 38d4abf5103c1abbe0f409d342ebb4e71404b7e9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 10 Jun 2020 23:40:00 +0200 Subject: 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 --- buildconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildconf b/buildconf index 8fe42ced2..3da0f7b68 100755 --- a/buildconf +++ b/buildconf @@ -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 } -- cgit v1.2.3