mirror of
https://github.com/ceph/ceph
synced 2024-12-18 01:16:55 +00:00
9 lines
233 B
Bash
9 lines
233 B
Bash
|
#!/bin/sh -ex
|
||
|
|
||
|
JSONNET_VERSION="v0.4.0"
|
||
|
OUTPUT_DIR=${1:-$(pwd)}
|
||
|
|
||
|
git clone -b ${JSONNET_VERSION} --depth 1 https://github.com/jsonnet-bundler/jsonnet-bundler
|
||
|
make -C jsonnet-bundler build
|
||
|
mv jsonnet-bundler/_output/jb ${OUTPUT_DIR}
|