Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: aztec-cli handle args with escape sequences
For commands like `compute-selector` which take arguments with reserved characters, the bash wrapper script required callers to triple escape characters, e.g. what normally would have been aztec-cli compute-selector foo\(Field\) using the `eval $DOCKER_CMD` approach required: aztec-cli computer-selector foo\\\(Field\\\) Replacing the `eval` with directly running the command fixed it.
- Loading branch information