mirror of
https://github.com/ceph/ceph
synced 2025-01-15 07:23:16 +00:00
6 lines
179 B
Bash
6 lines
179 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
JSONNETS_FILES=$(find . -name 'vendor' -prune -o \
|
||
|
-name '*.jsonnet' -print -o -name '*.libsonnet' -print)
|
||
|
jsonnetfmt "$@" ${JSONNETS_FILES}
|