Jumar Macato
7 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
1 changed files with
6 additions and
4 deletions
-
src/Avalonia.Dialogs/AboutAvaloniaDialog.xaml.cs
|
|
|
@ -40,7 +40,7 @@ namespace Avalonia.Dialogs |
|
|
|
{ |
|
|
|
var escapedArgs = cmd.Replace("\"", "\\\""); |
|
|
|
|
|
|
|
using var process = Process.Start( |
|
|
|
using (var process = Process.Start( |
|
|
|
new ProcessStartInfo |
|
|
|
{ |
|
|
|
FileName = "/bin/sh", |
|
|
|
@ -50,10 +50,12 @@ namespace Avalonia.Dialogs |
|
|
|
CreateNoWindow = true, |
|
|
|
WindowStyle = ProcessWindowStyle.Hidden |
|
|
|
} |
|
|
|
); |
|
|
|
if (waitForExit) |
|
|
|
)) |
|
|
|
{ |
|
|
|
process.WaitForExit(); |
|
|
|
if (waitForExit) |
|
|
|
{ |
|
|
|
process.WaitForExit(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|