Coin: fix android emulator script to use bash instead of sh

Task-number: QTBUG-91180
Change-Id: I410c6769aac3b3b760ff35aa71d52c8a5d6c1143
Reviewed-by: Toni Saario <toni.saario@qt.io>
(cherry picked from commit 136324ad623c09f47061b8c47deac90111904f57)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Assam Boudjelthia 2021-02-18 17:12:35 +02:00 committed by Qt Cherry-pick Bot
parent bbb2fe3c28
commit 0b92f05361
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ instructions:
- type: Group - type: Group
instructions: instructions:
- type: ExecuteCommand - type: ExecuteCommand
command: "sh {{.InstallDir}}/libexec/android_emulator_launcher.sh" command: "{{.InstallDir}}/libexec/android_emulator_launcher.sh"
maxTimeInSeconds: 300 maxTimeInSeconds: 300
maxTimeBetweenOutput: 300 maxTimeBetweenOutput: 300
userMessageOnFailure: "Failed to start emulator, check logs." userMessageOnFailure: "Failed to start emulator, check logs."

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/bash
############################################################################# #############################################################################
## ##
## Copyright (C) 2020 The Qt Company Ltd. ## Copyright (C) 2020 The Qt Company Ltd.