From cf507de619ada4e11dd65a660d47fc5ea449e2e2 Mon Sep 17 00:00:00 2001 From: Alban Crequy Date: Sat, 11 Feb 2017 01:44:30 +0100 Subject: [PATCH] integration/gce.sh: allow PROJECT override --- integration/gce.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/gce.sh b/integration/gce.sh index 7e491e9d1..5e75e385f 100755 --- a/integration/gce.sh +++ b/integration/gce.sh @@ -5,8 +5,8 @@ set -e # shellcheck disable=SC1091 . ./config.sh -export PROJECT=scope-integration-tests -export TEMPLATE_NAME="test-template-5" +export PROJECT="${PROJECT:-scope-integration-tests}" +export TEMPLATE_NAME="${TEMPLATE_NAME:-test-template-5}" export NUM_HOSTS=5 # shellcheck disable=SC1091 . "../tools/integration/gce.sh" "$@"