Merge "Ensure return code passes through output trimming"

This commit is contained in:
Jenkins 2015-03-17 13:41:13 +00:00 committed by Gerrit Code Review
commit db5c987e2b
1 changed files with 2 additions and 0 deletions

View File

@ -77,7 +77,9 @@ if [ "${RUN_PLAYBOOKS}" == "yes" ]; then
print
}
"
set -o pipefail
bash $(dirname ${0})/run-playbooks.sh | awk "${strip_debug}"
set +o pipefail
fi
# Run the tempest tests if required