Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Octoshift/Commands/CreateTeam/CreateTeamCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ public CreateTeamCommandBase() : base(name: "create-team", description: "Creates

public virtual Option<string> TeamName { get; } = new("--team-name") { IsRequired = true };

public virtual Option<string> IdpGroup { get; } = new("--idp-group");

public virtual Option<string> IdpGroup { get; } = new("--idp-group")
{
Description = "The Identity Provider Group to link the team to. For Enterprise Managed Users only."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is an extra semi colon on line 19 that is a syntax error, once deleted the build should succeed.

};
public virtual Option<string> GithubPat { get; } = new("--github-pat")
{
Description = "Personal access token of the GitHub target. Overrides GH_PAT environment variable."
Expand Down
Loading