From e5b4a3cae55e7ea06bebbb5c9b66a7c0247ada1b Mon Sep 17 00:00:00 2001 From: onefang Date: Sat, 4 Sep 2021 05:07:30 +1000 Subject: Filter out excess prebuild output. --- src/sledjchisl/sledjchisl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/sledjchisl/sledjchisl.c b/src/sledjchisl/sledjchisl.c index 1ed62ab..81268c3 100644 --- a/src/sledjchisl/sledjchisl.c +++ b/src/sledjchisl/sledjchisl.c @@ -8663,7 +8663,7 @@ Create the /opt/opensim-SC directory structure. #rm -rf addon-modules/Gloebit/GloebitMoneyModule #cp -r git-sub-modules/opensim-moneymodule-gloebit/addon-modules/Gloebit/GloebitMoneyModule addon-modules/Gloebit/ */ - if (shellMeFail("cd %s; ./runprebuild.sh autoclean", t)) E("Failed to autoclean!"); + if (shellMeFail("cd %s; ./runprebuild.sh autoclean | grep -v '...Cleaning project:'", t)) E("Failed to autoclean!"); // Clean the stuff autoclean forgets to clean. I feel so dirty. if (shellMeFail("cd %s; find -name obj -type d -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); if (shellMeFail("cd %s; find -name *.csproj -type f -print | xargs /bin/rm -fr", t)) E("Failed to rm obj!"); @@ -8690,7 +8690,7 @@ else fi */ // Use this for Mono 5 and later. - if (shellMeFail("cd %s; ./runprebuild.sh vs2015", t)) C("Failed to prebuild!"); + if (shellMeFail("cd %s; ./runprebuild.sh vs2015 | grep -v '...Creating project:'", t)) C("Failed to prebuild!"); // msbuild has a /maxcpucount option, but it takes longer to count the CPUs than it takes to compile, so ends up taking MORE time. Pffft. if (shellMeFail("cd %s; msbuild /p:Configuration=Debug /verbosity:minimal", t)) C("Failed to msbuild!"); // if (shellMeFail("cd %s; msbuild /p:Configuration=Release /verbosity:minimal", t)) C("Failed to msbuild!"); -- cgit v1.1