From 7d98003220ae1eeca82104d7daf3563e8f28bc90 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Wed, 5 Oct 2022 04:15:30 +0000 Subject: [PATCH] update azdo references to DevOps --- cli/azd/pkg/azdo/project.go | 2 +- cli/azd/pkg/commands/pipeline/azdo_provider.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/azd/pkg/azdo/project.go b/cli/azd/pkg/azdo/project.go index dab7d5b14be..02815b80433 100644 --- a/cli/azd/pkg/azdo/project.go +++ b/cli/azd/pkg/azdo/project.go @@ -28,7 +28,7 @@ func getProcessTemplateId(ctx context.Context, client core.Client) (string, erro return process.Id.String(), nil } -// creates a new Azure Devops project +// creates a new Azure DevOps project func createProject(ctx context.Context, connection *azuredevops.Connection, name string, description string, console input.Console) (*core.TeamProjectReference, error) { coreClient, err := core.NewClient(ctx, connection) if err != nil { diff --git a/cli/azd/pkg/commands/pipeline/azdo_provider.go b/cli/azd/pkg/commands/pipeline/azdo_provider.go index 739075a9b07..6e018f1cda2 100644 --- a/cli/azd/pkg/commands/pipeline/azdo_provider.go +++ b/cli/azd/pkg/commands/pipeline/azdo_provider.go @@ -121,7 +121,7 @@ func (p *AzdoScmProvider) createNewGitRepositoryFromInput(ctx context.Context, c var repo *azdoGit.GitRepository for { name, err := console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter the name for your new Azure Devops Repository OR Hit enter to use this name:", + Message: "Enter the name for your new Azure DevOps Repository OR Hit enter to use this name:", DefaultValue: p.repoDetails.projectName, }) if err != nil { @@ -354,7 +354,7 @@ func (p *AzdoScmProvider) promptForAzdoRepository(ctx context.Context, console i } switch idx { - // Select from an existing Azure Devops project + // Select from an existing Azure DevOps project case 0: remoteUrl, err = p.ensureGitRepositoryExists(ctx, console) if err != nil {