Skip to content

Commit c0d9a8a

Browse files
authored
fix: missing the container exit code check (#468)
Co-authored-by: rick <[email protected]>
1 parent a11b7ff commit c0d9a8a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

e2e/code-generator/start.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/bash
2+
set -e
23

34
docker-compose version
45

56
targets=(golang java python javascript curl)
67
for target in "${targets[@]}"
78
do
89
docker-compose down
9-
docker-compose up --build $target
10+
docker-compose up --build $target --exit-code-from $target
1011
done

0 commit comments

Comments
 (0)