From 130cb6c495ec9aeee01cf8a6297f8f2e0ede2d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=90=D0=B1?= =?UTF-8?q?=D0=B4=D1=80=D0=B0=D1=85=D0=BC=D0=B0=D0=BD=D0=BE=D0=B2?= <565963@gmail.com> Date: Mon, 7 Oct 2024 11:40:01 +0300 Subject: [PATCH] chore --- src/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()