ci-build: spelling (#24386)

pull/24793/head
Josh Soref 5 years ago committed by GitHub
parent 9ccdd4b824
commit 4db782fd5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      scripts/build/build-all.sh
  2. 2
      scripts/build/build.sh
  3. 2
      scripts/build_api_docs.sh
  4. 2
      scripts/circle-release-next-packages.sh
  5. 2
      scripts/generate_api_docs.sh
  6. 2
      scripts/import_many_dashboards.sh

@ -73,7 +73,7 @@ echo "Building frontend"
start=$(date +%s%N)
go run build.go ${OPT} build-frontend
runtime=$((($(date +%s%N) - start)/1000000))
echo "Frontent build took $runtime"
echo "Frontend build took $runtime"
reportFrontEndBuildTime $runtime
if [ -d "dist" ]; then

@ -102,7 +102,7 @@ function build_frontend() {
start=$(date +%s%N)
go run build.go ${OPT} build-frontend
runtime=$((($(date +%s%N) - start)/1000000))
echo "Frontent build took: $runtime ms"
echo "Frontend build took: $runtime ms"
echo "FRONTEND: finished"
}

@ -11,7 +11,7 @@ if ! git diff-index --quiet HEAD --; then
fi
# building grafana packages
echo "bulding grafana packages..."
echo "building grafana packages..."
yarn packages:build
# extract packages api documentation json

@ -11,7 +11,7 @@ function parse_git_hash() {
}
function prepare_version_commit () {
echo $'\nCommiting version changes. This commit will not be checked-in!'
echo $'\nCommitting version changes. This commit will not be checked-in!'
git config --global user.email "circleci@grafana.com"
git config --global user.name "CirceCI"
git commit -am "Version commit"

@ -29,7 +29,7 @@ echo "creating new branch ${_branch}"
git checkout -b "${_branch}"
# building grafana packages
echo "bulding grafana packages..."
echo "building grafana packages..."
yarn packages:build
# extract packages api documentation json

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save