Commit 3e6dc7ef authored by Ian Hickson's avatar Ian Hickson

Merge pull request #1030 from Hixie/travis-on-non-travis

Allow travis/test.sh to be run locally (not on travis)
parents c8126288 7d83903e
......@@ -18,8 +18,8 @@ flutter analyze --flutter-repo --no-current-directory --no-current-package --con
(cd examples/stocks; flutter test)
if [ $TRAVIS_PULL_REQUEST = "false" ]; then
if [ $TRAVIS_BRANCH = "master" ]; then
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
if [ "$TRAVIS_BRANCH" = "master" ]; then
pub global activate dartdoc 0.8.4
cat packages/flutter/doc/styles.html doc/_analytics.html > /tmp/_header.html
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment