File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
OctoshiftCLI.IntegrationTests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ public async Task ResetGithubTestEnvironment(string githubOrg)
158158
159159 public async Task InitializeBbsRepo ( string bbsProjectKey , string repoName )
160160 {
161- var repoPath = Path . Combine ( Path . GetTempPath ( ) , $ "{ repoName } -{ Guid . NewGuid ( ) } ") ;
161+ var repoPath = Path . Join ( Path . GetTempPath ( ) , $ "{ repoName } -{ Guid . NewGuid ( ) } ") ;
162162
163163 Directory . CreateDirectory ( repoPath ) ;
164164
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public static async Task Main(string[] args)
8282
8383 private static void WarnIfNotUsingExtension ( )
8484 {
85- if ( ! Path . TrimEndingDirectorySeparator ( AppContext . BaseDirectory ) . EndsWith ( Path . Combine ( "extensions" , "gh-ado2gh" ) . ToString ( ) ) )
85+ if ( ! Path . TrimEndingDirectorySeparator ( AppContext . BaseDirectory ) . EndsWith ( Path . Join ( "extensions" , "gh-ado2gh" ) ) )
8686 {
8787 Logger . LogWarning ( "You are not running the ado2gh CLI as a gh extension. This is not recommended, please run: gh extension install github/gh-ado2gh" ) ;
8888 }
You can’t perform that action at this time.
0 commit comments