mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 16:27:02 -06:00
toolkit: pipe execa output to console.stdout (#19052)
This commit is contained in:
parent
140ecbcf79
commit
8c5d925063
@ -64,8 +64,7 @@ const buildPluginRunner: TaskRunner<PluginCIOptions> = async ({ backend }) => {
|
||||
}
|
||||
|
||||
// Run plugin-ci task
|
||||
const exe = await execa('make', ['backend-plugin-ci']);
|
||||
console.log(exe.stdout);
|
||||
execa('make', ['backend-plugin-ci']).stdout.pipe(process.stdout);
|
||||
} else {
|
||||
// Do regular build process with coverage
|
||||
await pluginBuildRunner({ coverage: true });
|
||||
|
Loading…
Reference in New Issue
Block a user