Skip to content

Commit

Permalink
ref
Browse files Browse the repository at this point in the history
  • Loading branch information
yutokun committed Oct 24, 2020
1 parent 357ed99 commit a67fe66
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions APKInstaller/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,9 @@ Task Install(string path)

void HandleOutput(string message, Process process)
{
if (string.IsNullOrEmpty(message))
{
return;
}
else if (message.Contains("Success"))
if (string.IsNullOrEmpty(message)) return;

if (message.Contains("Success"))
{
AddMessage("インストール完了");
}
Expand Down

0 comments on commit a67fe66

Please sign in to comment.