forked from mirrors/nixpkgs
9 lines
299 B
Bash
9 lines
299 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i bash -p curl jq common-updater-scripts
|
||
|
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
readonly plugin_name="$1"
|
||
|
readonly latest_version="$(curl "https://grafana.com/api/plugins/${plugin_name}" | jq -r .version)"
|
||
|
update-source-version "grafanaPlugins.${plugin_name}" "$latest_version"
|