Skip to content

Commit

Permalink
Fix TizenDevice.uninstallApp unexpectedly returning false (flutter-ti…
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim authored Jul 16, 2024
1 parent 3d6f4bc commit ecb9119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tizen_device.dart
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class TizenDevice extends Device {
}) async {
final RunResult result =
await runSdbAsync(<String>['uninstall', app.id], checked: false);
if (result.exitCode != 0 || !result.stdout.contains('val[ok]')) {
if (result.exitCode != 0) {
_logger.printError('sdb uninstall failed:\n$result');
return false;
}
Expand Down

0 comments on commit ecb9119

Please sign in to comment.