Skip to content

Commit 5bd53b9

Browse files
committed
Merge branch 'next' into Issue1755
2 parents 19596f9 + 7c3103c commit 5bd53b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

RetailCoder.VBE/UI/SourceControl/SourceControlViewViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ private void OpenRepo()
411411
}
412412

413413
var project = _vbe.ActiveVBProject;
414-
var repo = new Repository(project.Name, folderPicker.SelectedPath, string.Empty);
414+
var repo = new Repository(project.HelpFile, folderPicker.SelectedPath, string.Empty);
415415

416416
OnOpenRepoStarted();
417417
try

Rubberduck.SourceControl/GitProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public override IRepository Init(string directory, bool bare = false)
126126

127127
LibGit2Sharp.Repository.Init(directory, bare);
128128

129-
return new Repository(Project.Name, workingDir, directory);
129+
return new Repository(Project.HelpFile, workingDir, directory);
130130
}
131131
catch (LibGit2SharpException ex)
132132
{

Rubberduck.SourceControl/SourceControlProviderBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public virtual IRepository InitVBAProject(string directory)
6262
}
6363

6464
Project.ExportSourceFiles(directory);
65-
CurrentRepository = new Repository(Project.Name, directory, directory);
65+
CurrentRepository = new Repository(Project.HelpFile, directory, directory);
6666
return CurrentRepository;
6767
}
6868

0 commit comments

Comments
 (0)