Skip to content

Commit ee53f1c

Browse files
author
paulus
committed
Added semicolons.
1 parent 2465963 commit ee53f1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ jobs:
192192
run: >
193193
if ! kubectl wait --for=condition=complete --all jobs --timeout=30m; then
194194
for pod in $(kubectl -n $ns get pod -o name); do
195-
logs=$(kubectl -n $ns logs $pod --all-containers=true)
195+
logs=$(kubectl -n $ns logs $pod --all-containers=true);
196196
done;
197-
echo "::error::Kubectl timed out with logs:\n $logs"
198-
exit 1
197+
echo "::error::Kubectl timed out with logs:\n $logs";
198+
exit 1;
199199
fi
200200
- name: Run maven cucumber reporting
201201
run: mvn -f charts/gxf-cucumber-tests/pom.xml verify

0 commit comments

Comments
 (0)