diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-08-04 14:12:16 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-08-06 14:18:35 +0200 |
commit | f6e2fa2b31ccccfe57267c6ef993dedc6b8f5d30 (patch) | |
tree | eb6872b962e4e11a012af7c71e5819a5f5a0749d /scripts | |
parent | 9b6151d1283f6a34f268c662e5e965f6dee25487 (diff) | |
download | sonarqube-f6e2fa2b31ccccfe57267c6ef993dedc6b8f5d30.tar.gz sonarqube-f6e2fa2b31ccccfe57267c6ef993dedc6b8f5d30.zip |
[SCRIPTS] make patches more visible in logs
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/patches_utils.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/patches_utils.sh b/scripts/patches_utils.sh index 7a3dd39e57f..2b79cd18406 100755 --- a/scripts/patches_utils.sh +++ b/scripts/patches_utils.sh @@ -16,8 +16,12 @@ function call_patches() { IFS=',' for PATCH in $PATCHES; do #echo "calling $PATCHES_HOME/$PATCH.sh $ARGS" + echo "" + echo "******** $PATCH *******" $PATCHES_HOME/$PATCH.sh $ARGS done + + echo "" } |