summaryrefslogtreecommitdiff
path: root/platform/android/scripts/release.py
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/scripts/release.py')
-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)