Unverified Commit 198c4f19 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Show process error when iOS install fails (#38712)

parent b2f8d3a6
...@@ -230,7 +230,8 @@ class IOSDevice extends Device { ...@@ -230,7 +230,8 @@ class IOSDevice extends Device {
), ),
); );
return true; return true;
} on ProcessException { } on ProcessException catch (error) {
printError(error.message);
return false; return false;
} }
} }
...@@ -245,7 +246,8 @@ class IOSDevice extends Device { ...@@ -245,7 +246,8 @@ class IOSDevice extends Device {
), ),
); );
return true; return true;
} on ProcessException { } on ProcessException catch (error) {
printError(error.message);
return false; return false;
} }
} }
......
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