Compare commits

...

1 commit

Author SHA1 Message Date
cca5bf4866
WIP: shims 2023-05-26 22:27:05 -05:00

View file

@ -1113,6 +1113,9 @@ class Viv:
), ),
): ):
self._install_local_src(sha256, args.src, args.cli) self._install_local_src(sha256, args.src, args.cli)
def shim(self, args):
"""generate viv-powered cli apps"""
echo("not implemented.")
def _get_subcmd_parser( def _get_subcmd_parser(
self, self,
@ -1274,6 +1277,11 @@ class Viv:
"-p", "--pythonpath", help="show the path/to/install", action="store_true" "-p", "--pythonpath", help="show the path/to/install", action="store_true"
) )
self._get_subcmd_parser(
subparsers,
"shim",
).set_defaults(func =self.shim, cmd="shim")
args = parser.parse_args() args = parser.parse_args()
args.func(args) args.func(args)