Skip to content

Commit

Permalink
Fix TizenDevice.uninstallApp unexpectedly returning false
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim committed Jul 12, 2024
1 parent 934e620 commit 0a5dc8f
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 0a5dc8f

Please sign in to comment.