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
Current:
arthur.py --submit $CLUSTER_ID extract --prolix
Desired:
arthur.py extract --submit $CLUSTER_ID --prolix
Brownie points when --submit automatically turns on "prolix" mode and (maybe?) sets the "prefix".
--submit
This is most apparent when submitting jobs to the cluster where "help" may not do what a user might reasonably expect:
arthur.py --submit $CLUSTER_ID extract --help
Now you have to find the help in the output of the command on the cluster.
This would be clear (and print the help message for extract in terminal):
arthur.py extract --submit $CLUSTER_ID --help
Having the --submit and --config args after the verb would also make command line expansion easier.
--config
It gets trickier when considering "dry-run":
arthur.py extract --submit $CLUSTER_ID --dry-run
For now, this should indeed submit "extract --dry-run". Consider the workflow:
arthur.py upgrade --from dw.user --dry-run arthur.py upgrade --from --submit $CLUSTER_ID
(Which is almost great .. but might need --submit to imply --prolix and --prefix {whatever prefix is configured})
--prolix
--prefix {whatever prefix is configured}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Current:
Desired:
Brownie points when
--submit
automatically turns on "prolix" mode and (maybe?) sets the "prefix".Details
This is most apparent when submitting jobs to the cluster where "help" may not do what a user might reasonably expect:
Now you have to find the help in the output of the command on the cluster.
This would be clear (and print the help message for extract in terminal):
Having the
--submit
and--config
args after the verb would also make command line expansion easier.It gets trickier when considering "dry-run":
For now, this should indeed submit "extract --dry-run". Consider the workflow:
(Which is almost great .. but might need
--submit
to imply--prolix
and--prefix {whatever prefix is configured}
)The text was updated successfully, but these errors were encountered: