We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a0a5b commit a586a6bCopy full SHA for a586a6b
1 file changed
Makefile
@@ -20,7 +20,7 @@ export
20
.DEFAULT_GOAL := help
21
22
define uppercase
23
-$(shell sed -r 's/(^|-)(\w)/\U\2/g' <<< $(1))
+$(shell echo '$(1)' | sed -r 's/(^|-)(\w)/\U\2/g')
24
endef
25
26
pr-check:
@@ -147,9 +147,9 @@ build-test-runner: build-examples
147
148
test-dockerized-concurrent: build-test-runner
149
@echo "Running concurrent scenarios in Docker..."
150
- @docker network create concurrent-test-net 2>/dev/null || true
+ @docker network rm concurrent-test-net 2>/dev/null || true
151
+ @docker network create concurrent-test-net
152
@docker run --rm \
- --network concurrent-test-net \
153
-e INPUT_SUITE_FILE_ARRAY='[]' \
154
-e INPUT_SCENARIO_DIR=/workspace/test/dockerized/scenarios \
155
-e DOCKER_IMAGE_NAME=local/test-base \
0 commit comments