Skip to content

Commit

Permalink
Fixed unable to execute prelaunch commands
Browse files Browse the repository at this point in the history
  • Loading branch information
lwYeo committed Nov 2, 2018
1 parent 75d72be commit 2087c23
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions SoliditySHA3MinerUI/MinerInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,7 @@ public MinerInstance(string preLaunchScript, uint prependLogLinesCount)
StartInfo = new ProcessStartInfo
{
WorkingDirectory = PreLaunchPath.DirectoryName,
FileName = PreLaunchPath.Name,
RedirectStandardOutput = true,
RedirectStandardError = true,
FileName = PreLaunchPath.FullName,
UseShellExecute = false,
CreateNoWindow = true
}
Expand Down

0 comments on commit 2087c23

Please sign in to comment.