mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00: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…
Add table
Add a link
Reference in a new issue