Revert "Surround URL replacements option with quotes" #33
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reverts #31
I've noticed currently v2 with url-replacements option doesn't work #34
It seems its because of the difference between
autify
CLI andautify-with-proxy
CLI, a wrapper command to useautify
CLI within our CI for CI/CD integration plugins.Both
child_process.spawn
and"${ARGS[@]}"
can have a whitespace within arg but currentlyspawn
hasshell
option.It parses
"
but"${ARGS[@]}"
passes arguments as-is. As a result given argumen is like--url-replacements "\"https://example.com https://example.net\""
on shell.I'll remove the option autifyhq/autify-cli#394