mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
toolkit: fix master build, avoid null check (#19055)
This commit is contained in:
@@ -56,7 +56,7 @@ More information [here](https://community.grafana.com/t/using-grafanas-query-ins
|
||||
This option is now renamed (and moved to Options sub section above your queries):
|
||||

|
||||
|
||||
Datas source selection & options & help are now above your metric queries.
|
||||
Data source selection & options & help are now above your metric queries.
|
||||

|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -64,7 +64,7 @@ const buildPluginRunner: TaskRunner<PluginCIOptions> = async ({ backend }) => {
|
||||
}
|
||||
|
||||
// Run plugin-ci task
|
||||
execa('make', ['backend-plugin-ci']).stdout.pipe(process.stdout);
|
||||
execa('make', ['backend-plugin-ci']).stdout!.pipe(process.stdout);
|
||||
} else {
|
||||
// Do regular build process with coverage
|
||||
await pluginBuildRunner({ coverage: true });
|
||||
|
||||
Reference in New Issue
Block a user