From bcb65f7d5bdcd7cb8470890d9581abf77978f6ed Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Sun, 29 Jan 2023 17:24:02 +0100 Subject: [PATCH] Fix compiler path for public builds --- bin/compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile.py b/bin/compile.py index 2818251..dc80701 100644 --- a/bin/compile.py +++ b/bin/compile.py @@ -91,7 +91,7 @@ def compile(arch="64"): PACKAGE_DIR = 'npbackup' is_private = check_private_build() - OUTPUT_DIR = os.path.abspath(os.path.join(BASEDIR, os.pardir, "BUILD" + "-PRIVATE" if is_private else "")) + OUTPUT_DIR = os.path.abspath(os.path.join(BASEDIR, os.pardir, "BUILD", "-PRIVATE" if is_private else "")) if not os.path.isdir(OUTPUT_DIR): os.makedirs(OUTPUT_DIR)