omnibor / omnibor-rs

Reproducible identifiers & fine-grained build dependency tracking for software artifacts.
https://omnibor.io
Apache License 2.0
19 stars 9 forks source link

fix(xtask): Fix `execute` flag escaping. #163

Closed alilleybrinker closed 8 months ago

alilleybrinker commented 8 months ago

xshell uses some custom escaping logic under the hood that meant trying to pass two args in a single string didn't work (they end up as one quoted single arg, which cargo-release doesn't accept).

This commit modifies the flag inclusion logic to instead pass them as a slice, which should expand correctly.

Signed-off-by: Andrew Lilley Brinker alilleybrinker@gmail.com