Let named_python work for pythonw or any other executable name.
This commit is contained in:
parent
e98cae6566
commit
39ac3b7ae6
1 changed files with 5 additions and 4 deletions
|
@ -26,15 +26,16 @@ from voussoirkit import pathclass
|
||||||
from voussoirkit import winwhich
|
from voussoirkit import winwhich
|
||||||
|
|
||||||
def namedpython_argparse(args):
|
def namedpython_argparse(args):
|
||||||
python = pathclass.Path(sys.executable)
|
this_python = pathclass.Path(sys.executable)
|
||||||
|
|
||||||
|
base = this_python.replace_extension('').basename.split('-', 1)[0]
|
||||||
name = args.name.strip()
|
name = args.name.strip()
|
||||||
|
extension = this_python.extension.with_dot
|
||||||
named_python = python.parent.with_child(f'python-{name}{python.extension.with_dot}')
|
named_python = this_python.parent.with_child(f'{base}-{name}{extension}')
|
||||||
if named_python.exists:
|
if named_python.exists:
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
os.link(python.absolute_path, named_python.absolute_path)
|
os.link(this_python.absolute_path, named_python.absolute_path)
|
||||||
print(named_python.absolute_path)
|
print(named_python.absolute_path)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue