Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow spaces in step IDs #897

Merged
merged 1 commit into from
Jul 29, 2020
Merged

Allow spaces in step IDs #897

merged 1 commit into from
Jul 29, 2020

Conversation

wtraylor
Copy link
Contributor

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"

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"
@ivotron ivotron merged commit 4098bc3 into getpopper:master Jul 29, 2020
@ivotron
Copy link
Collaborator

ivotron commented Jul 29, 2020

thanks a lot @wtraylor!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants