Commit b7559fa
committed
ci(e2e): collapse Android retry loop onto one line
The reactivecircus emulator-runner action runs each newline-separated
line of `script:` as a separate `sh -c` invocation. The YAML folded
scalar (>-) only collapses lines that share indentation; my retry
for-loop had deeper-indented body lines, so YAML preserved those
newlines and sh saw `... do` with no `done` -> Syntax error.
Put the entire `for/do/done` retry chain on one logical line so the
folded scalar produces a single sh command.1 parent bcf09a1 commit b7559fa
1 file changed
Lines changed: 1 addition & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
287 | 287 | | |
288 | 288 | | |
289 | 289 | | |
290 | | - | |
291 | | - | |
292 | | - | |
293 | | - | |
294 | | - | |
| 290 | + | |
295 | 291 | | |
296 | 292 | | |
297 | 293 | | |
| |||
0 commit comments