We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d242a commit 744016fCopy full SHA for 744016f
scripts/test-e2e.js
@@ -19,7 +19,8 @@ function run() {
19
const workers = multi ? 3 : 1;
20
21
if (platform === 'android') {
22
- exec.execSync(`yes | /usr/local/share/android-sdk/tools/bin/sdkmanager --licenses`);
+ const sdkmanager = '/usr/local/share/android-sdk/tools/bin/sdkmanager';
23
+ exec.execSync(`${sdkmanager} --update && yes | ${sdkmanager} --licenses`);
24
}
25
26
if (!skipBuild) {
0 commit comments