mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
fix<Upgrade>: correct bad download url
This commit is contained in:
parent
7930619a03
commit
34a11a1b38
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue