Skip to content

Commit fb7270c

Browse files
authored
Add support for install and uninstall github action templates
1 parent 7150e6f commit fb7270c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ if [ "$EXPERIMENT_NAME" == "all" ]; then
3434
ginkgo -nodes=${PARALLEL_EXECUTION}
3535
cd ..
3636

37-
else
38-
## Run the selected chaos experiment template
37+
elif [ ! -z "$EXPERIMENT_NAME" ]; then
38+
## Run the selected chaos experiment
3939
go test tests/${EXPERIMENT_NAME}_test.go -v -count=1 -timeout=${TEST_TIMEOUT}s
4040
fi
4141

0 commit comments

Comments
 (0)