From 130ecc94059e76a5bb7a061ea5b4c707e078b5a7 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 18 Dec 2024 16:05:51 -0300 Subject: [PATCH] Invert `SkipForked` --- ricaun.Nuke/Components/IHazGitRepository.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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