diff --git a/src/installer.py b/src/installer.py index 1ecb16b..477d746 100644 --- a/src/installer.py +++ b/src/installer.py @@ -18,7 +18,7 @@ def install(parsed) -> None: ) if not delivered: os.environ["DIR"] = projectDir - subprocess.call(["/usr/bin/sh", projectDir + "/scripts/install.sh"]) - subprocess.call(["/usr/bin/sh", projectDir + "/scripts/runner.sh"]) + subprocess.call(["sh", projectDir + "/scripts/install.sh"]) + subprocess.call(["sh", projectDir + "/scripts/runner.sh"]) sleep(5) weather_run()