Skip to content

Commit 905f6b4

Browse files
set CreateNoWindow to true (#1242)
1 parent 8a336c3 commit 905f6b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/KubernetesClient/KubernetesClientConfiguration.ConfigFile.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,8 @@ public static Process CreateRunnableExternalProcess(ExternalExecution config)
523523
process.StartInfo.RedirectStandardOutput = true;
524524
process.StartInfo.RedirectStandardError = true;
525525
process.StartInfo.UseShellExecute = false;
526-
526+
process.StartInfo.CreateNoWindow = true;
527+
527528
return process;
528529
}
529530

0 commit comments

Comments
 (0)