Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
e3a99a0a
Unverified
Commit
e3a99a0a
authored
Sep 12, 2019
by
Ryan McKinley
Committed by
GitHub
Sep 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
toolkit: fix master build, avoid null check (#19055)
parent
09b434bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
docs/sources/guides/whats-new-in-v4-5.md
+1
-1
packages/grafana-toolkit/src/cli/tasks/plugin.ci.ts
+1
-1
No files found.
docs/sources/guides/whats-new-in-v4-5.md
View file @
e3a99a0a
...
...
@@ -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):
![
image|519x120
](
upload://ySjHOVpavV6yk9LHQxL9nq2HIsT.png
)
Data
s
source selection & options & help are now above your metric queries.
Data source selection & options & help are now above your metric queries.
![
image|690x179
](
upload://5kNDxKgMz1BycOKgG3iWYLsEVXv.png
)
### Minor Changes
...
...
packages/grafana-toolkit/src/cli/tasks/plugin.ci.ts
View file @
e3a99a0a
...
...
@@ -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
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment