mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
fix: don't overwrite keys
This commit is contained in:
parent
92da092791
commit
1848a7edb5
1 changed files with 7 additions and 9 deletions
|
@ -50,7 +50,7 @@ from typing import (
|
||||||
from urllib.error import HTTPError
|
from urllib.error import HTTPError
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
|
|
||||||
__version__ = "23.5a5-9-g33e2ff5-dev"
|
__version__ = "23.5a5-11-g92da092-dev"
|
||||||
|
|
||||||
|
|
||||||
class Spinner:
|
class Spinner:
|
||||||
|
@ -1435,14 +1435,6 @@ class Cli:
|
||||||
action="store_true",
|
action="store_true",
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
("run", "shim"): [
|
|
||||||
Arg(
|
|
||||||
"-k",
|
|
||||||
"--keep",
|
|
||||||
help="preserve environment",
|
|
||||||
action="store_true",
|
|
||||||
),
|
|
||||||
],
|
|
||||||
("run", "freeze", "shim"): [
|
("run", "freeze", "shim"): [
|
||||||
Arg("reqs", help="requirements specifiers", nargs="*"),
|
Arg("reqs", help="requirements specifiers", nargs="*"),
|
||||||
Arg(
|
Arg(
|
||||||
|
@ -1454,6 +1446,12 @@ class Cli:
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
("run", "shim"): [
|
("run", "shim"): [
|
||||||
|
Arg(
|
||||||
|
"-k",
|
||||||
|
"--keep",
|
||||||
|
help="preserve environment",
|
||||||
|
action="store_true",
|
||||||
|
),
|
||||||
Arg("-b", "--bin", help="console_script/script to invoke", metavar="<bin>"),
|
Arg("-b", "--bin", help="console_script/script to invoke", metavar="<bin>"),
|
||||||
],
|
],
|
||||||
("manage|purge", "manage|update", "manage|install"): [
|
("manage|purge", "manage|update", "manage|install"): [
|
||||||
|
|
Loading…
Reference in a new issue