diff options
author | Eike Ziller <[email protected]> | 2022-04-19 11:23:39 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2022-04-20 14:23:43 +0000 |
commit | f5b77d87da1466e2176144741d5985cb54fe5169 (patch) | |
tree | 1c284b065970e2af8e74d38f0459eff4b34307b1 | |
parent | 9084ab1b64f3160d6b29d64f10befd069c23a721 (diff) |
Move build scripts to Python3
On newer macOS versions there even is no unversioned python
executable anymore, so we need to make it explicit
Change-Id: Ic2260a06b859e949a42f7dc34f1ff4dd582ce635
Reviewed-by: Qt CI Bot <[email protected]>
Reviewed-by: Christian Stenger <[email protected]>
-rwxr-xr-x | scripts/build.py | 2 | ||||
-rwxr-xr-x | scripts/build_plugin.py | 2 | ||||
-rwxr-xr-x | scripts/deployqt.py | 2 | ||||
-rwxr-xr-x | scripts/makedmg.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build.py b/scripts/build.py index 8195459006d..e2037d8574c 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ############################################################################# ## ## Copyright (C) 2020 The Qt Company Ltd. diff --git a/scripts/build_plugin.py b/scripts/build_plugin.py index cddb9f126a8..dadb274efa6 100755 --- a/scripts/build_plugin.py +++ b/scripts/build_plugin.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ############################################################################# ## ## Copyright (C) 2020 The Qt Company Ltd. diff --git a/scripts/deployqt.py b/scripts/deployqt.py index 5ac56bedc3f..d18b3cc2893 100755 --- a/scripts/deployqt.py +++ b/scripts/deployqt.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ################################################################################ # Copyright (C) The Qt Company Ltd. # All rights reserved. diff --git a/scripts/makedmg.py b/scripts/makedmg.py index fa0d4719ecf..d9178bc65c2 100755 --- a/scripts/makedmg.py +++ b/scripts/makedmg.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 ############################################################################ # # Copyright (C) 2018 The Qt Company Ltd. |