mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
14 lines
269 B
Bash
14 lines
269 B
Bash
|
#!/bin/bash
|
||
|
set -eo pipefail
|
||
|
|
||
|
cd "$(dirname "$0")"/..
|
||
|
|
||
|
. scripts/common.sh
|
||
|
|
||
|
find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \
|
||
|
while read f; do \
|
||
|
${JSONNET_FMT} "$f" | diff -u "$f" -; \
|
||
|
done
|
||
|
|
||
|
mixtool lint mixin.libsonnet
|