From e7255ee14d9d47f1140c0c640be961a28770a41b Mon Sep 17 00:00:00 2001 From: DomamaN202 <51743763+Domaman202@users.noreply.github.com> Date: Sun, 22 Oct 2023 06:45:51 +0700 Subject: [PATCH] ArchLinux support in buildscript --- pbuild.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pbuild.py b/pbuild.py index f796ce1..14c3fe5 100644 --- a/pbuild.py +++ b/pbuild.py @@ -103,6 +103,7 @@ def check_tools(): if len(missing_tools) > 0: subprocess.run(["sudo", "apt", "install"] + missing_tools) + subprocess.run(["sudo", "pacman", "-S"] + missing_tools) def create_hdd(IMAGE_NAME):