mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
4b16cd6cc8
* Build: introduce shellcheck Fixes #16198
15 lines
240 B
Bash
Executable File
15 lines
240 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 || exit
|
|
./build.sh
|