Commit 8b820ccc authored by Jakob Andersen's avatar Jakob Andersen Committed by GitHub

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