feat(helper/updater): nvm

This commit is contained in:
404Kurama 2023-04-23 22:57:33 +07:00
parent 6930e008f2
commit d84e23ac12

View File

@ -97,7 +97,7 @@ namespace Bloxstrap.Helpers
/// file without closing it process.
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "cmd.exe";
startInfo.Arguments = $"/c ping 127.0.0.1 -n 5 > nul && copy /y {downloadPath} {Directories.Application} && cls && echo Please restart Bloxstrap to complete update bootstrap. && {Directories.Application} -menu";
startInfo.Arguments = $"/c ping 127.0.0.1 -n 5 > nul && copy /y {downloadPath} {Directories.Application}";
///startInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(startInfo);