ci-build: spelling (#24386)

This commit is contained in:
Josh Soref
2020-05-18 09:41:06 -04:00
committed by GitHub
parent 9ccdd4b824
commit 4db782fd5b
6 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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"
}

View File

@@ -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

View File

@@ -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"

View File

@@ -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