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 3b5b13f commit 0e7c3c6Copy full SHA for 0e7c3c6
src/e-build.js
@@ -103,7 +103,7 @@ program
103
.option('-t|--target [target]', 'Build a specific ninja target')
104
.option('--no-remote', 'Build without remote execution (entirely locally)')
105
.allowUnknownOption()
106
- .action((ninjaArgs, options) => {
+ .action(async (ninjaArgs, options) => {
107
try {
108
const config = evmConfig.current();
109
@@ -119,7 +119,7 @@ program
119
}
120
121
reclient.downloadAndPrepareRBECredentialHelper(config);
122
- siso.ensureBackendStarlark(config);
+ await siso.ensureBackendStarlark(config);
123
124
if (process.platform === 'darwin') {
125
ensureSDK();
0 commit comments