Skip to content

Commit

Permalink
use wildcard rather than regex
Browse files Browse the repository at this point in the history
  • Loading branch information
torcolvin committed Nov 28, 2023
1 parent a27e082 commit 9c39d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-test/start_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ docker rm ${SG_TEST_COUCHBASE_SERVER_DOCKER_NAME} || true
# --volume: Makes and mounts a CBS folder for storing a CBCollect if needed

# use dockerhub if no registry is specified, allows for pre-release images from alternative registries
if [[ !"${COUCHBASE_DOCKER_IMAGE_NAME}" =~ ".*/" ]]; then
if [[ "${COUCHBASE_DOCKER_IMAGE_NAME}" != *"/"* ]]; then
COUCHBASE_DOCKER_IMAGE_NAME="couchbase/server:${COUCHBASE_DOCKER_IMAGE_NAME}"
fi

Expand Down

0 comments on commit 9c39d92

Please sign in to comment.