Skip to content

Commit

Permalink
Fix bash syntax error in test_pause_resume_with_error
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Mar 19, 2024
1 parent 2368557 commit 33af575
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ chain:
name: task1
ref: core.local
params:
cmd: "while [ -e '{{tempfile}}' ]; do sleep 0.1; exit 1"
cmd: |
while [ -e '{{tempfile}}' ];
do
sleep 0.1
done
exit 1
timeout: 180
on-failure: task2
-
Expand Down

0 comments on commit 33af575

Please sign in to comment.