Commit 211b7a0
CAMEL-23703: camel-launcher - actually run brew install/uninstall in POSIX validator
The Homebrew validator prefixed the install and uninstall commands with
`export HOME=... HOMEBREW_NO_AUTO_UPDATE=1 brew ...`. With the `export`
keyword the shell treats `brew`, its subcommand, the formula path and
`--force` as variable names to export rather than a command to run, so on a
runner where brew is present the install/uninstall steps were silent no-ops
and the validator passed without ever exercising an install.
Drop `export` so the assignments become command-prefix environment for brew
(the same form the style/audit steps already use), letting the validator fail
when an install actually breaks.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>1 parent 8d69d65 commit 211b7a0
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
165 | | - | |
| 165 | + | |
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| |||
207 | 207 | | |
208 | 208 | | |
209 | 209 | | |
210 | | - | |
| 210 | + | |
211 | 211 | | |
212 | 212 | | |
213 | 213 | | |
| |||
0 commit comments