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.
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, whichcargo-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