Forgot to split the path, assumed it was a list
This commit is contained in:
parent
3e97b1e93c
commit
614d6374b8
|
|
@ -66,7 +66,7 @@ def supports_color():
|
||||||
return supported_platform and is_a_tty
|
return supported_platform and is_a_tty
|
||||||
|
|
||||||
def locate_binary(name):
|
def locate_binary(name):
|
||||||
for PATH in os.environ['PATH']:
|
for PATH in os.environ['PATH'].split(':'):
|
||||||
for root, folders, files in os.walk(PATH):
|
for root, folders, files in os.walk(PATH):
|
||||||
for file in files:
|
for file in files:
|
||||||
if file == name:
|
if file == name:
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="archinstall",
|
name="archinstall",
|
||||||
version="2.0.3rc7",
|
version="2.0.3rc8",
|
||||||
author="Anton Hvornum",
|
author="Anton Hvornum",
|
||||||
author_email="anton@hvornum.se",
|
author_email="anton@hvornum.se",
|
||||||
description="Arch Linux installer - guided, templates etc.",
|
description="Arch Linux installer - guided, templates etc.",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue