(command: string)
| 268 | } |
| 269 | |
| 270 | private runCommand(command: string): Promise<CommandResult> { |
| 271 | const commandWithOptions = getBazelCommandString(command, '', false); |
| 272 | return LoadingIndicator.fromTask(runCliCommand(commandWithOptions, undefined, true)) |
| 273 | .setText(`${wrapInColor('Running Bazel command:', ANSI_COLORS.YELLOW_COLOR)} ${getBazelCli()} ${command}`) |
| 274 | .show(); |
| 275 | } |
| 276 | |
| 277 | private async spawnCommand( |
| 278 | command: string, |
no test coverage detected