We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 64b1bcb + 9f181d1 commit df84832Copy full SHA for df84832
helper/ExecCommand.cs
@@ -16,6 +16,7 @@ public static string Exec(string command)
16
proc.StartInfo.UseShellExecute = false;
17
proc.StartInfo.RedirectStandardOutput = true;
18
proc.StartInfo.RedirectStandardError = true;
19
+ proc.StartInfo.RedirectStandardInput = true;
20
proc.Start();
21
22
result += proc.StandardOutput.ReadToEnd();
helper/PhpHelper.cs
@@ -35,6 +35,7 @@ public static List<string> GetAvailablePhpVersions()
35
public static void SetNewPhpVersion(string newVersion, bool isDebug)
36
{
37
AnsiConsole.Status()
38
+ .AutoRefresh(true)
39
.Start("Setting PHP Version to " + newVersion, ctx =>
40
41
var availablePhpVersions = PhpHelper.GetAvailablePhpVersions();
0 commit comments