Commit 26076d9e authored by Devon Carew's avatar Devon Carew

Update utils.dart (#4364)

parent 7ae584bc
......@@ -11,11 +11,11 @@ import 'package:path/path.dart' as path;
bool get isRunningOnBot {
// https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables
// CHROME_HEADLESS is one property set on Flutter's Chrome Infra bots.
return
Platform.environment['TRAVIS'] == 'true' ||
Platform.environment['CONTINUOUS_INTEGRATION'] == 'true' ||
// CHORME_HEADLESS is one property set on Flutter's Chrome Infra bots.
Platform.environment['CHORME_HEADLESS'] == '1';
Platform.environment['CHROME_HEADLESS'] == '1';
}
String hex(List<int> bytes) {
......
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