mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-23 02:12:25 +08:00
fix: bad output file name while creating archive by tag
This commit is contained in:
@@ -23,7 +23,7 @@ namespace SourceGit.ViewModels
|
||||
{
|
||||
_repo = repo;
|
||||
_revision = branch.Head;
|
||||
_saveFile = $"archive-{Path.GetFileNameWithoutExtension(branch.Name)}.zip";
|
||||
_saveFile = $"archive-{Path.GetFileName(branch.Name)}.zip";
|
||||
BasedOn = branch;
|
||||
View = new Views.Archive() { DataContext = this };
|
||||
}
|
||||
@@ -41,7 +41,7 @@ namespace SourceGit.ViewModels
|
||||
{
|
||||
_repo = repo;
|
||||
_revision = tag.SHA;
|
||||
_saveFile = $"archive-{tag.Name}.zip";
|
||||
_saveFile = $"archive-{Path.GetFileName(tag.Name)}.zip";
|
||||
BasedOn = tag;
|
||||
View = new Views.Archive() { DataContext = this };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user