summaryrefslogtreecommitdiff
path: root/platform/android/scripts
diff options
context:
space:
mode:
authorTobrun <tobrun.van.nuland@gmail.com>2017-01-27 15:03:00 +0100
committerGitHub <noreply@github.com>2017-01-27 15:03:00 +0100
commit2629f22a43628d93f65141a69e4b01999e19bcbd (patch)
treef517661fb78432b60632575ddd0cc0ceb4bcfa3a /platform/android/scripts
parenta253a15a7c61f6c0fbdeca69cd6ca813a9b8d40f (diff)
downloadqtlocation-mapboxgl-2629f22a43628d93f65141a69e4b01999e19bcbd.tar.gz
[android] - update changelog with 4.x entries (#7825)
* [android] - update changelog with 4.x entries * update release script
Diffstat (limited to 'platform/android/scripts')
-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)