From 4c5de120b71ce7b27001f16dd7c02042bfe8ab3e Mon Sep 17 00:00:00 2001 From: dante ruiz Date: Wed, 4 Sep 2019 09:13:22 -0700 Subject: [PATCH] enable post build script for qt launcher --- tools/ci-scripts/postbuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci-scripts/postbuild.py b/tools/ci-scripts/postbuild.py index b93ed5a664..f04217ce24 100644 --- a/tools/ci-scripts/postbuild.py +++ b/tools/ci-scripts/postbuild.py @@ -149,7 +149,7 @@ def signBuild(executablePath): def zipDarwinLauncher(): - launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', sys.platform) + launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', 'qt') launcherBuildPath = os.path.join(BUILD_PATH, 'launcher') archiveName = computeArchiveName('HQ Launcher') @@ -170,7 +170,7 @@ def zipDarwinLauncher(): def buildLightLauncher(): - launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', sys.platform) + launcherSourcePath = os.path.join(SOURCE_PATH, 'launchers', 'qt') launcherBuildPath = os.path.join(BUILD_PATH, 'launcher') if not os.path.exists(launcherBuildPath): os.makedirs(launcherBuildPath)