Skip to content

Commit

Permalink
Fix SkipForked
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 18, 2024
1 parent 8c36f4c commit 0b5729b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ricaun.Nuke/Components/IHazGitRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ public bool SkipForked()
if (EnableForkedRepository)
return false;

return IsGitRepositoryForked();
if (IsGitRepositoryForked())
return true;

return false;
}
/// <summary>
/// IsGitRepositoryForked
Expand Down

0 comments on commit 0b5729b

Please sign in to comment.