From e1020dd1a614f714d242c5d7c4640202e6039b38 Mon Sep 17 00:00:00 2001 From: David Wertenteil Date: Sun, 5 Feb 2023 14:18:27 +0200 Subject: [PATCH] saving file under build dir Signed-off-by: David Wertenteil --- build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index b4dd7601..cecacd54 100644 --- a/build.py +++ b/build.py @@ -20,11 +20,11 @@ def check_status(status, msg): def get_build_dir(): - current_platform = platform.system() + # current_platform = platform.system() - if current_platform not in platformSuffixes: raise OSError("Platform %s is not supported!" % (current_platform)) + # if current_platform not in platformSuffixes: raise OSError("Platform %s is not supported!" % (current_platform)) - return os.path.join("build", platformSuffixes[current_platform]) + return "build" # os.path.join("build", platformSuffixes[current_platform]) def get_package_name():