File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
build/BenchmarkDotNet.Build Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public static class Repo
10
10
public const string Owner = "dotnet" ;
11
11
public const string Name = "BenchmarkDotNet" ;
12
12
public const string HttpsUrlBase = $ "https://github.com/{ Owner } /{ Name } ";
13
- public const string SshGitUrl = $ "git@github.com: { Owner } / { Name } .git";
13
+ public const string HttpsGitUrl = $ "{ HttpsUrlBase } .git";
14
14
15
15
public const string ChangelogBranch = "docs-changelog" ;
16
16
public const string DocsStableBranch = "docs-stable" ;
Original file line number Diff line number Diff line change @@ -244,8 +244,8 @@ private void EnsureSrcDirectoryExist(bool forceClone = false)
244
244
245
245
if ( ! context . DirectoryExists ( SrcDirectory ) )
246
246
{
247
- Log ( $ "Cloning branch '{ Repo . ChangelogBranch } ' from '{ Repo . SshGitUrl } ' to '{ SrcDirectory } '.") ;
248
- context . GitRunner . Clone ( SrcDirectory , Repo . SshGitUrl , Repo . ChangelogBranch ) ;
247
+ Log ( $ "Cloning branch '{ Repo . ChangelogBranch } ' from '{ Repo . HttpsGitUrl } ' to '{ SrcDirectory } '.") ;
248
+ context . GitRunner . Clone ( SrcDirectory , Repo . HttpsGitUrl , Repo . ChangelogBranch ) ;
249
249
Log ( $ "Clone completed: '{ Repo . ChangelogBranch } ' -> '{ SrcDirectory } '.") ;
250
250
}
251
251
else
You can’t perform that action at this time.
0 commit comments