|
|
|
@ -109,7 +109,8 @@ namespace ServiceLib.Handler
|
|
|
|
|
_updateFunc(false, args.Msg); |
|
|
|
|
|
|
|
|
|
url = args.Url; |
|
|
|
|
fileName = Utils.GetTempPath(Utils.GetGUID()); |
|
|
|
|
var ext = Path.GetExtension(url); |
|
|
|
|
fileName = Utils.GetTempPath(Utils.GetGUID()+ ext); |
|
|
|
|
await downloadHandle.DownloadFileAsync(url, fileName, true, _timeout); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
@ -322,9 +323,9 @@ namespace ServiceLib.Handler
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
using Process p = new(); |
|
|
|
|
p.StartInfo.FileName = filePath.AppendQuotes(); |
|
|
|
|
p.StartInfo.FileName = filePath; |
|
|
|
|
p.StartInfo.Arguments = coreInfo.versionArg; |
|
|
|
|
p.StartInfo.WorkingDirectory = Utils.StartupPath(); |
|
|
|
|
p.StartInfo.WorkingDirectory = Utils.GetConfigPath(); |
|
|
|
|
p.StartInfo.UseShellExecute = false; |
|
|
|
|
p.StartInfo.RedirectStandardOutput = true; |
|
|
|
|
p.StartInfo.CreateNoWindow = true; |
|
|
|
|