diff options
Diffstat (limited to 'build/undercloud.sh')
-rwxr-xr-x | build/undercloud.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/undercloud.sh b/build/undercloud.sh index ca75bb0e..3ac46e0f 100755 --- a/build/undercloud.sh +++ b/build/undercloud.sh @@ -31,10 +31,14 @@ LIBGUESTFS_BACKEND=direct virt-customize \ -a undercloud.qcow2 # Use apex tripleo-heat-templates fork -PR_NUMBER=$(git log -1 | grep 'opnfv-tht-pr:' | grep -o '[0-9]*') +PR_NUMBER="" REF="stable/colorado" REPO="https://github.com/trozet/opnfv-tht" +if git log -1 | grep 'opnfv-tht-pr:' | grep -o '[0-9]*'; then + PR_NUMBER=$(git log -1 | grep 'opnfv-tht-pr:' | grep -o '[0-9]*') +fi + if [ "$PR_NUMBER" != "" ]; then echo "Using pull request $PR_NUMBER from $REPO" # Source credentials since we are rate limited to 60/day |