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
Currently, tasks that utilize many variables causes a lot of redundant typing of the required variable
tasks: MY_TASK_W_LOTS_OF_OPTIONS: requires: [OPTION_A, OPTION_B, OPTION_C, OPTION_D, OPTION E, OPTION F ......] cmds: - make some_recipe A={{.OPTION_A}} B={{.OPTION_B}} C={{.OPTION_C}} D={{.OPTION_D}} E={{.OPTION_E}} F={{.OPTION_F}} .....
Desire is to create a global or task level option to require all variables
Possible solutions:
tasks: MY_TASK_W_LOTS_OF_OPTIONS: requires: "*" cmds: - make some_recipe A={{.OPTION_A}} B={{.OPTION_B}} C={{.OPTION_C}} D={{.OPTION_D}} E={{.OPTION_E}} F={{.OPTION_F}} .....
tasks: MY_TASK_W_LOTS_OF_OPTIONS: require-all: True cmds: - make some_recipe A={{.OPTION_A}} B={{.OPTION_B}} C={{.OPTION_C}} D={{.OPTION_D}} E={{.OPTION_E}} F={{.OPTION_F}} .....
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Currently, tasks that utilize many variables causes a lot of redundant typing of the required variable
Desire is to create a global or task level option to require all variables
Possible solutions:
The text was updated successfully, but these errors were encountered: