fix<Upgrade>: correct bad download url

This commit is contained in:
leo 2021-07-23 11:27:23 +08:00
parent 7930619a03
commit 34a11a1b38

View file

@ -15,7 +15,7 @@ namespace SourceGit.Views {
}
private void Download(object sender, RoutedEventArgs e) {
var info = new ProcessStartInfo("cmd", $"/c start https://gitee.com/sourcegit/SourceGit/releases/{Version.TagName}");
var info = new ProcessStartInfo("cmd", $"/c start https://gitee.com/sourcegit/sourcegit/releases/{Version.TagName}");
info.CreateNoWindow = true;
Process.Start(info);