Merge "Do not force using the remote "origin" when testing upgrades"

This commit is contained in:
Zuul 2017-11-26 21:43:30 +00:00 committed by Gerrit Code Review
commit c4aeb63e84

View File

@ -66,7 +66,7 @@ if [[ "${ACTION}" == "upgrade" ]]; then
export UPGRADE_TARGET_BRANCH=$(git rev-parse HEAD)
# Now checkout the source SHA/branch
git checkout origin/${UPGRADE_SOURCE_BRANCH}
git checkout ${UPGRADE_SOURCE_BRANCH}
fi
## Functions -----------------------------------------------------------------