File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -130,18 +130,12 @@ def main():
130
130
"The environment variable GRAFANA_TOKEN needs to be set in order to deploying dashboards to a Grafana deployment."
131
131
)
132
132
133
- # ensure jsonnet (go-jsonnet)
133
+ # ensure jsonnet
134
134
if not shutil .which ("jsonnet" ):
135
135
raise ValueError (
136
136
"No jsonnet binary was found on path! "
137
137
"Install go-jsonnet via https://github.com/google/go-jsonnet/releases."
138
138
)
139
- jsonnet_version = subprocess .check_output (["jsonnet" , "--version" ], text = True )
140
- if "go" not in jsonnet_version .casefold ():
141
- print (
142
- "WARNING: The jsonnet binary on path doesn't seem to be go-jsonnet from https://github.com/google/go-jsonnet/releases! "
143
- "Only that jsonnet implementation is known to work."
144
- )
145
139
146
140
api = partial (
147
141
grafana_request ,
You can’t perform that action at this time.
0 commit comments