From c1a7286cc3b98b4927153d969b6c4bbd6b095e42 Mon Sep 17 00:00:00 2001 From: melpon Date: Sun, 20 Oct 2024 08:01:08 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run.py b/run.py index bbbe4af..f615f93 100644 --- a/run.py +++ b/run.py @@ -232,6 +232,7 @@ def do_package(debug: bool, target: str, env: str, prefix: str): cmake_configuration = "Debug" if debug else "Release" build_dir = os.path.join(BASE_DIR, "_build", configuration) package_dir = os.path.join(BASE_DIR, "_package") + mkdir_p(package_dir) do_build(debug, target, f"{prefix}/cattleshed-{env}", f"{prefix}/kennel-{env}") cmd(["cmake", "--install", os.path.join(build_dir, target), "--config", cmake_configuration]) with cd(prefix):