You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be amazing to have a support for external command being able to run dvc <cmd> by just having a dvc-<cmd> in the user's PATH, similar to git.
Looking at the argparse, it does not seem to be possible to add support for default subparser or a fallback subparser. So, we may be need to add all the commands from the PATH matching dvc- prefix during ArgumentParser build. Also may need to take into account a few things for windows
(eg: PATHEXT, current directory has higher precedence, multiple executable extensions, etc.).
It'd be amazing to have a support for external command being able to run
dvc <cmd>
by just having advc-<cmd>
in the user'sPATH
, similar togit
.Looking at the argparse, it does not seem to be possible to add support for default subparser or a fallback subparser. So, we may be need to add all the commands from the
PATH
matchingdvc-
prefix duringArgumentParser
build. Also may need to take into account a few things for windows(eg:
PATHEXT
, current directory has higher precedence, multiple executable extensions, etc.).Also see: iterative/cml#699.
The text was updated successfully, but these errors were encountered: