diff --git a/ricaun.Nuke/Components/IHazGitRepository.cs b/ricaun.Nuke/Components/IHazGitRepository.cs index 6347900..85572f9 100644 --- a/ricaun.Nuke/Components/IHazGitRepository.cs +++ b/ricaun.Nuke/Components/IHazGitRepository.cs @@ -52,16 +52,16 @@ public string GetGitRepositoryOwner() /// /// Determines if the forked repository should be skipped. /// - /// True if the forked repository should be skipped; otherwise, false. + /// False if the forked repository should be skipped; otherwise, true. public bool SkipForked() { if (EnableForkedRepository) - return false; + return true; if (IsGitRepositoryForked()) - return true; + return false; - return false; + return true; } /// /// IsGitRepositoryForked