mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -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
|
// Run plugin-ci task
|
||||||
const exe = await execa('make', ['backend-plugin-ci']);
|
execa('make', ['backend-plugin-ci']).stdout.pipe(process.stdout);
|
||||||
console.log(exe.stdout);
|
|
||||||
} else {
|
} else {
|
||||||
// Do regular build process with coverage
|
// Do regular build process with coverage
|
||||||
await pluginBuildRunner({ coverage: true });
|
await pluginBuildRunner({ coverage: true });
|
||||||
|
Loading…
Reference in New Issue
Block a user