Fix: Wrong path when sending package build time (#20595)

This commit is contained in:
Peter Holmberg 2019-11-22 14:24:24 +01:00 committed by GitHub
parent 3fc5f4552a
commit ccc7f39b8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ else
yarn workspace @grafana/$PACKAGE run build yarn workspace @grafana/$PACKAGE run build
runtime=$((($(date +%s%N) - start)/1000000)) runtime=$((($(date +%s%N) - start)/1000000))
if [ "${CIRCLE_BRANCH}" == "master" ]; then if [ "${CIRCLE_BRANCH}" == "master" ]; then
exit_if_fail ./ci-metrics-publisher.sh "grafana.ci-buildtimes.$CIRCLE_JOB.$PACKAGE=$runtime" exit_if_fail ./scripts/ci-metrics-publisher.sh "grafana.ci-buildtimes.$CIRCLE_JOB.$PACKAGE=$runtime"
fi fi
done done