From fdf5d643b6b4db0ecf2f70f5af9c228510d04970 Mon Sep 17 00:00:00 2001 From: Aleksey Khoroshilov Date: Tue, 24 May 2022 22:04:15 +0700 Subject: [PATCH] Use goma_auth without requiring Chrome to be installed. --- build/commands/lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/commands/lib/util.js b/build/commands/lib/util.js index a6ab5fca9da..c07955b3cb6 100755 --- a/build/commands/lib/util.js +++ b/build/commands/lib/util.js @@ -576,7 +576,7 @@ const util = { const gomaLoginInfo = util.runProcess('goma_auth', ['info'], options) if (gomaLoginInfo.status !== 0) { console.log('Login required for using Goma. This is only needed once') - util.run('goma_auth', ['login'], options) + util.run('goma_auth', ['login', '--no-browser'], options) } util.run('goma_ctl', ['ensure_start'], options) }