summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobrun Van Nuland <tobrun.van.nuland@gmail.com>2017-01-24 11:54:27 +0100
committerTobrun Van Nuland <tobrun.van.nuland@gmail.com>2017-01-24 11:54:27 +0100
commit31ac504b8d08425388799abea8b4064bcdd25bf8 (patch)
treeeb9fa23d4b115efe852e1f4bad11e2690cf42b0e
parent1f3424fafab32431f02c6348382266437bb08aea (diff)
downloadqtlocation-mapboxgl-upstream/tvn-update-release-script.tar.gz
-rw-r--r--platform/android/scripts/release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/scripts/release.py b/platform/android/scripts/release.py
index bc485aa706..8abcccffdb 100644
--- a/platform/android/scripts/release.py
+++ b/platform/android/scripts/release.py
@@ -161,7 +161,7 @@ def abort_with_message(message):
def execute_call(command):
click.echo('Executing: %s' % command)
- result = subprocess.call(command.split(' '))
+ result = subprocess.call(command, shell=True)
if result != 0:
abort_with_message('Command failed: %s' % command)