From e47eb9cb4e7bfce9d52196457f25e958cee7c213 Mon Sep 17 00:00:00 2001 From: dwertent Date: Wed, 16 Feb 2022 14:02:28 +0200 Subject: [PATCH] adding logs to python file --- build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index abf816ff..e695e811 100644 --- a/build.py +++ b/build.py @@ -49,11 +49,12 @@ def main(): ArmoWebsite = os.getenv("ArmoWebsite") ArmoAuthServer = os.getenv("ArmoAuthServer") - ks_file = os.path.join(buildDir, packageName) - hash_file = os.path.join(buildDir, packageName + ".sha256") # Create build directory buildDir = getBuildDir() + + ks_file = os.path.join(buildDir, packageName) + hash_file = ks_file + ".sha256" if not os.path.isdir(buildDir): os.makedirs(buildDir)