mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 07:33:42 -06:00
16 lines
233 B
Bash
Executable File
16 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ..
|
|
|
|
|
|
if [ -z "$CIRCLE_TAG" ]; then
|
|
_target="master"
|
|
else
|
|
_target="$CIRCLE_TAG"
|
|
fi
|
|
|
|
git clone -b "$_target" --single-branch git@github.com:grafana/grafana-enterprise.git --depth 1
|
|
|
|
cd grafana-enterprise
|
|
./build.sh
|