ci-build: spelling (#24386)

This commit is contained in:
Josh Soref
2020-05-18 16:41:06 +03:00
committed by GitHub
parent 9ccdd4b824
commit 4db782fd5b
6 changed files with 6 additions and 6 deletions
+1 -1
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
+1 -1
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"
}