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/22 20:01:15 UTC

[geode] branch windows-heavy-lifter updated: 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


The following commit(s) were added to refs/heads/windows-heavy-lifter by this push:
     new e7b63a2  Correct regex for windows job detection
e7b63a2 is described below

commit e7b63a21d1beed521a40e8d79809ab783402de6b
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