From a9bab19bcaae545dec4e764b8f8fd91c0aacfa13 Mon Sep 17 00:00:00 2001 From: Brian Armstrong Date: Fri, 23 Feb 2018 23:47:54 -0700 Subject: [PATCH] Update travis script to actually run dartanalyzer Current dartanalyzer returns: "Options file not found: .analysis_options" Updating the file name to point at the actual analysis options in the repo --- tool/travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/travis.sh b/tool/travis.sh index 4d2387ab..93999c12 100755 --- a/tool/travis.sh +++ b/tool/travis.sh @@ -28,7 +28,7 @@ echo "PASSED" # Make sure we pass the analyzer echo "Checking dartanalyzer..." -FAILS_ANALYZER="$(find lib test -name "*.dart" | xargs dartanalyzer --options .analysis_options)" +FAILS_ANALYZER="$(find lib test -name "*.dart" | xargs dartanalyzer --options analysis_options.yaml)" if [[ $FAILS_ANALYZER == *"[error]"* ]] then echo "FAILED"