Skip to content

Commit

Permalink
Fix missing android devices
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita romanov committed Dec 10, 2024
1 parent 8a23f8a commit df61d37
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/DotNet.Meteor.Common/Processes/ProcessRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ public Process Start() {

public ProcessResult WaitForExit(int timeout = -1) {
Start();

if (timeout > 0)
process.WaitForExit(timeout);
else
process.WaitForExit();
process.WaitForExit();
//TODO: Not working with node.js child_process
// if (timeout > 0)
// process.WaitForExit(timeout);
// else
// process.WaitForExit();

var exitCode = process.ExitCode;
process.Close();
Expand Down

0 comments on commit df61d37

Please sign in to comment.