You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2018/08/24 15:09:52 UTC

[geode] 03/06: Correct regex for windows job detection

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a commit to branch windows-heavy-lifter
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 757b9889a4a267857147a9b138a03ee283427bc5
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Wed Aug 22 13:01:00 2018 -0700

    Correct regex for windows job detection
---
 ci/scripts/start_instance.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/start_instance.sh b/ci/scripts/start_instance.sh
index 69ba070..da94c97 100755
--- a/ci/scripts/start_instance.sh
+++ b/ci/scripts/start_instance.sh
@@ -57,7 +57,7 @@ if [[ "${GEODE_FORK}" != "apache" ]]; then
   IMAGE_FAMILY_PREFIX="${GEODE_FORK}-${SANITIZED_GEODE_BRANCH}-"
 fi
 
-if [[ "${SANITIZED_BUILD_JOB_NAME}" =~ Windows ]]; then
+if [[ "${SANITIZED_BUILD_JOB_NAME}" =~ [Ww]indows ]]; then
   WINDOWS_PREFIX="windows-"
 fi