From 8dd06d5bed606e19d848679987d62be942e05905 Mon Sep 17 00:00:00 2001 From: Jesus Alvarez Date: Sun, 29 Jun 2014 10:36:23 -0700 Subject: [PATCH] build.sh: Delete log files after build --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index d135c88..06270a4 100755 --- a/build.sh +++ b/build.sh @@ -358,6 +358,7 @@ if [[ $AZB_BUILD == 1 && $AZB_MODE_GIT == 1 ]]; then done build_git_sources sign_packages + run_cmd "find . -iname \"*.log\" -print -exec rm {} \\;" elif [[ $AZB_BUILD == 1 && $AZB_MODE_LTS == 1 ]]; then for PKG in $AZB_LTS_PKG_LIST; do msg "Building $PKG..." @@ -368,6 +369,7 @@ elif [[ $AZB_BUILD == 1 && $AZB_MODE_LTS == 1 ]]; then done build_lts_sources sign_packages + run_cmd "find . -iname \"*.log\" -print -exec rm {} \\;" fi if [[ $AZB_SIGN -eq 1 ]]; then