diff --git a/build/parameters.cake b/build/parameters.cake index c81801c66..69e8dad3c 100644 --- a/build/parameters.cake +++ b/build/parameters.cake @@ -52,10 +52,10 @@ public class BuildParameters IsRunningOnWindows = context.IsRunningOnWindows(), IsRunningOnAppVeyor = buildSystem.AppVeyor.IsRunningOnAppVeyor, IsPullRequest = buildSystem.AppVeyor.Environment.PullRequest.IsPullRequest, - IsMainRepo = StringComparer.OrdinalIgnoreCase.Equals("FluentNHibernate/fluent-nhibernate", buildSystem.AppVeyor.Environment.Repository.Name), + IsMainRepo = StringComparer.OrdinalIgnoreCase.Equals("nhibernate/fluent-nhibernate", buildSystem.AppVeyor.Environment.Repository.Name), IsMainBranch = StringComparer.OrdinalIgnoreCase.Equals("master", buildSystem.AppVeyor.Environment.Repository.Branch), IsTagged = IsBuildTagged(buildSystem), - GitHub = BuildGitHub.GetWithCredentials(context, "FluentNHibernate", "fluent-nhibernate"), + GitHub = BuildGitHub.GetWithCredentials(context, "nhibernate", "fluent-nhibernate"), NuGet = BuildNuGet.GetWithCredentials(context), ReleaseNotes = context.ParseReleaseNotes("./ReleaseNotes.md"), IsPublishBuild = IsPublishing(target),