One more fix for finding Android Studio on macOS. (#8288)

Finally found the command to run tests in checked mode on my system. This one should've been caught by the IDE, but wasn't.
This commit is contained in:
Jakob Andersen 2017-02-20 14:27:03 +01:00 committed by GitHub
parent 0f3cc6e943
commit 8b820ccc54

View file

@ -125,7 +125,7 @@ class AndroidStudio implements Comparable<AndroidStudio> {
void _checkForStudio(String path) {
if (!fs.isDirectorySync(path))
return;
List<Directory> directories = fs
Iterable<Directory> directories = fs
.directory(path)
.listSync()
.where((FileSystemEntity e) => e is Directory);