Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: tool/coverage.sh

Issue 1236493003: fix code coverage to work on dev channel (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/coverage.sh
diff --git a/tool/coverage.sh b/tool/coverage.sh
index e45f7cb7611c93014203e125172ba8b8f4274dfb..e9f04949af10dcc75b8a937d92ad115e5375ea10 100755
--- a/tool/coverage.sh
+++ b/tool/coverage.sh
@@ -4,7 +4,7 @@ set -e # bail on error
# Prerequisite: ./tool/build_sdk.sh has been run.
# Install dart_coveralls; gather and send coverage data.
-if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then
+if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "dev" ]; then
pub global run dart_coveralls report \
--token $COVERALLS_TOKEN \
--retry 2 \
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698