Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: tweak installer to allow spaces in step IDs (#897)
For the script that gets generated by the installer, the call to `docker` must receive the command-line arguments verbatim, including quotes. Therefore `$@` needs to be quoted. Without quotes (before): $ popper run -f wf.yml "first step" would execute: $ docker run <...> getpopper/popper:v2.7.0 run -f wf.yml first step With quotes (after fix): $ docker run <...> getpopper/popper:v2.7.0 run -f wf.yml "first step" [skip ci]
- Loading branch information