mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
feat: make shims overwriteable
This commit is contained in:
parent
5e2a62d527
commit
4d75feb9e3
1 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.5a6-dev"
|
||||
__version__ = "23.5a6-3-g5e2a62d-dev"
|
||||
|
||||
|
||||
class Spinner:
|
||||
|
@ -1352,14 +1352,14 @@ class Viv:
|
|||
default_bin, bin = self._pick_bin(reqs, bin)
|
||||
output = Env().viv_bin_dir / default_bin if not output else output.absolute()
|
||||
|
||||
if output.is_file():
|
||||
err_quit(f"{output} already exists...exiting")
|
||||
|
||||
if freeze:
|
||||
spec = resolve_deps(reqs, requirements)
|
||||
else:
|
||||
spec = combined_spec(reqs, requirements)
|
||||
|
||||
if output.is_file():
|
||||
log.warning(f"{output} already exists")
|
||||
|
||||
if confirm(
|
||||
f"Write shim for {a.bold}{bin}{a.end} to {a.green}{output}{a.end}?",
|
||||
yes=yes,
|
||||
|
|
Loading…
Reference in a new issue