aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@qt.io>2023-11-27 13:24:17 +0100
committerTim Jenssen <tim.jenssen@qt.io>2023-11-27 13:46:31 +0000
commit0c3c17c53a28e43fe34e84d1b63c50f610942b7a (patch)
tree258c0fb6bf924f8cecd36cf8d7a16cf42238ecc5 /scripts
parent60d23bff03edd7d8e5522523e2fff1843caec800 (diff)
Build/deploy: fix missing argument
Change-Id: Ia73cfac75d336d7e321aef4059bb0eb6e4e3ed31 Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deploy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/deploy.py b/scripts/deploy.py
index 15ddd3ced0..20ade283d2 100755
--- a/scripts/deploy.py
+++ b/scripts/deploy.py
@@ -469,8 +469,8 @@ def main():
qtcreator_binary_path = (args.qtcreator_binary if common.is_mac_platform()
else os.path.dirname(args.qtcreator_binary))
- deploy_binary('qtdiag', qt_install)
- deploy_binary('qsb', qt_install)
+ deploy_binary('qtdiag', qtcreator_binary_path, qt_install)
+ deploy_binary('qsb', qtcreator_binary_path, qt_install)
deploy_plugins(qtcreator_binary_path, qt_install)
deploy_imports(qtcreator_binary_path, qt_install)
deploy_translations(qtcreator_binary_path, qt_install)