mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
10 lines
201 B
Bash
10 lines
201 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 | \
|
||
|
xargs -n 1 -- ${JSONNET_FMT} -i
|