From c1256bbb5ac03f77fcc284ef84b6e8b5e3900cc0 Mon Sep 17 00:00:00 2001 From: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> Date: Tue, 19 Jul 2022 11:56:26 -0400 Subject: [PATCH] scripts: remove lrc build for Windows script - also uses the renamed build scripts for the client-qt project Change-Id: Ic2fd45555edfe8b670b35c494be5a2d38430b4cd --- scripts/build-windows.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/scripts/build-windows.py b/scripts/build-windows.py index 78e5e7a0..8cb53c18 100644 --- a/scripts/build-windows.py +++ b/scripts/build-windows.py @@ -22,15 +22,10 @@ def build_daemon(parsed_args): os.chdir(os.path.dirname(this_dir)) -def build_lrc(parsed_args): - make_cmd = os.path.dirname(this_dir) + '\\lrc\\make-lrc.py' - execute_cmd('python ' + make_cmd) - - def build_client(parsed_args): os.chdir('./client-qt') - execute_cmd('python make-client.py init') - execute_cmd('python make-client.py') + execute_cmd('python build.py init') + execute_cmd('python build.py') def parse_args(): @@ -49,7 +44,6 @@ def parse_args(): def main(): parsed_args = parse_args() build_daemon(parsed_args) - build_lrc(parsed_args) build_client(parsed_args) -- GitLab