We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4440901 commit 6d4b181Copy full SHA for 6d4b181
deploy.py
@@ -217,6 +217,12 @@ def main():
217
"No jsonnet binary was found on path! "
218
"Install go-jsonnet via https://github.com/google/go-jsonnet/releases."
219
)
220
+ jsonnet_version = subprocess.check_output(["jsonnet", "--version"], text=True)
221
+ if "go" not in jsonnet_version.casefold():
222
+ print(
223
+ "WARNING: The jsonnet binary on path doesn't seem to be go-jsonnet from https://github.com/google/go-jsonnet/releases! "
224
+ "Only that jsonnet implementation is known to work."
225
+ )
226
227
api = partial(
228
grafana_request,
0 commit comments