Skip to content

Commit a586a6b

Browse files
author
Davide Melfi
committed
chore: minor fixes
1 parent 09a0a5b commit a586a6b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export
2020
.DEFAULT_GOAL := help
2121

2222
define uppercase
23-
$(shell sed -r 's/(^|-)(\w)/\U\2/g' <<< $(1))
23+
$(shell echo '$(1)' | sed -r 's/(^|-)(\w)/\U\2/g')
2424
endef
2525

2626
pr-check:
@@ -147,9 +147,9 @@ build-test-runner: build-examples
147147

148148
test-dockerized-concurrent: build-test-runner
149149
@echo "Running concurrent scenarios in Docker..."
150-
@docker network create concurrent-test-net 2>/dev/null || true
150+
@docker network rm concurrent-test-net 2>/dev/null || true
151+
@docker network create concurrent-test-net
151152
@docker run --rm \
152-
--network concurrent-test-net \
153153
-e INPUT_SUITE_FILE_ARRAY='[]' \
154154
-e INPUT_SCENARIO_DIR=/workspace/test/dockerized/scenarios \
155155
-e DOCKER_IMAGE_NAME=local/test-base \

0 commit comments

Comments
 (0)