We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$ mold -a foo -a bar init
is quite tedious when you're using environments.
I'd suggest two additions:
$ mold init:foo:bar
which will append foo and bar to the environments list just for the init recipe, and:
foo
bar
init
$ mold +foo +bar init
which is just shorthand for -a foo and -a bar
-a foo
-a bar
The text was updated successfully, but these errors were encountered:
Maybe a better option is to allow recipes to be parametrized, eg specifying a recipe as something like:
recipe deploy/$ENV/$COMPONENT { $ "echo $ENV $COMPONENT" }
Sorry, something went wrong.
No branches or pull requests
is quite tedious when you're using environments.
I'd suggest two additions:
which will append
foo
andbar
to the environments list just for theinit
recipe, and:which is just shorthand for
-a foo
and-a bar
The text was updated successfully, but these errors were encountered: