mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
fix(#18): use --bin to determine default filename
This commit is contained in:
parent
c5bc03f497
commit
4c236e96eb
1 changed files with 5 additions and 5 deletions
|
@ -3452,9 +3452,9 @@ class Viv:
|
|||
"`python3 <(curl -fsSL viv.dayl.in/viv.py) manage install`"
|
||||
)
|
||||
|
||||
def _pick_bin(self, reqs: List[str], bin: str) -> Tuple[str, str]:
|
||||
def _pick_bin(self, reqs: List[str], bin: str) -> str:
|
||||
default = system.bin(re.split(r"[=><~!*]+", reqs[0])[0])
|
||||
return default, (default if not bin else bin)
|
||||
return default if not bin else bin
|
||||
|
||||
def cmd_shim(
|
||||
self,
|
||||
|
@ -3475,8 +3475,8 @@ class Viv:
|
|||
viv shim yartsu -o ~/bin/yartsu --standalone
|
||||
"""
|
||||
|
||||
default_bin, bin = self._pick_bin(reqs, bin)
|
||||
output = Env().viv_bin_dir / default_bin if not output else output.absolute()
|
||||
bin = self._pick_bin(reqs, bin)
|
||||
output = Env().viv_bin_dir / bin if not output else output.absolute()
|
||||
|
||||
if freeze:
|
||||
spec = resolve_deps(reqs, requirements)
|
||||
|
@ -3520,7 +3520,7 @@ class Viv:
|
|||
if script:
|
||||
Script(path=script, spec=spec, keep=keep, rest=rest, viv=self).run()
|
||||
else:
|
||||
_, bin = self._pick_bin(reqs, bin)
|
||||
bin = self._pick_bin(reqs, bin)
|
||||
vivenv = ViVenv(spec)
|
||||
|
||||
with vivenv.use(keep=keep):
|
||||
|
|
Loading…
Reference in a new issue