Commit 82eaf7d
committed
Fix keep-failed-containers flag handling in integration script
The --keep-failed-containers flag was being passed as --keep-failed-containers=true/false
which doesn't work with Go's BoolVar flag parser. Boolean flags in Go expect
just --keep-failed-containers (for true) or nothing (for false).
Modified the script to only pass the flag when keep_failed is true, matching
Go's boolean flag expectations.1 parent effcffa commit 82eaf7d
1 file changed
Lines changed: 5 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
128 | | - | |
| 128 | + | |
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
135 | 135 | | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
136 | 140 | | |
137 | 141 | | |
138 | 142 | | |
| |||
0 commit comments