Merge "Display additional phase detail in summary if present"

This commit is contained in:
Jenkins 2017-04-07 13:44:07 +00:00 committed by Gerrit Code Review
commit 11dd94308e
1 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,11 @@ function resources {
echo "Skipping resource phase ``$phase`` by configuration"
return
fi
echo_summary "Running resource phase: ``$phase``"
local desc=$phase
if [[ -n $side ]]; then
desc="$phase $side"
fi
echo_summary "Running resource phase: ``$desc``"
local projects=$UPGRADE_PROJECTS
if [[ $phase == "destroy" ]];then