Skip to content

Commit

Permalink
Merge branch 'user/defaultryan/submodulestatus' of https://github.com…
Browse files Browse the repository at this point in the history
…/microsoft/devhome into user/defaultryan/submodulestatus
  • Loading branch information
DefaultRyan committed Sep 7, 2024
2 parents e3ca499 + 65efb45 commit e42dd56
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ public CommitLogCache(Repository repo)

private CommitWrapper? FindLastCommitUsingCommandLine(string relativePath)
{
if (relativePath == string.Empty)
if (string.IsNullOrEmpty(relativePath))

{

Check failure on line 102 in extensions/GitExtension/FileExplorerGitIntegration/Models/CommitLogCache.cs

View workflow job for this annotation

GitHub Actions / build-and-test (Release, arm64, windows-latest, 8.0.x)

Check failure on line 102 in extensions/GitExtension/FileExplorerGitIntegration/Models/CommitLogCache.cs

View workflow job for this annotation

GitHub Actions / build-and-test (Release, arm64, windows-latest, 8.0.x)

Check failure on line 102 in extensions/GitExtension/FileExplorerGitIntegration/Models/CommitLogCache.cs

View workflow job for this annotation

GitHub Actions / build-and-test (Debug, x86, windows-latest, 8.0.x)

Check failure on line 102 in extensions/GitExtension/FileExplorerGitIntegration/Models/CommitLogCache.cs

View workflow job for this annotation

GitHub Actions / build-and-test (Release, x64, windows-latest, 8.0.x)

relativePath = ".";
}
Expand Down

0 comments on commit e42dd56

Please sign in to comment.