From 1577781f28df95fec9f8152b33786e4d9553c125 Mon Sep 17 00:00:00 2001 From: Aleksey Khoroshilov Date: Mon, 24 Oct 2022 21:19:36 +0700 Subject: [PATCH] Remove --no-browser flag. --- 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 bf6b430f23d9..0d6d3dba3f75 100644 --- a/build/commands/lib/util.js +++ b/build/commands/lib/util.js @@ -643,7 +643,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', '--no-browser'], options) + util.run('goma_auth', ['login'], options) } util.run('goma_ctl', ['ensure_start'], options) }