From d562bfb5807437dacdc5140b66f7351a7a79b6df Mon Sep 17 00:00:00 2001 From: Rahul Gupta Date: Fri, 10 Jul 2026 20:06:43 +0000 Subject: [PATCH] Fix incorrect 'azd --version' references to 'azd version' azd exposes its version via the 'azd version' subcommand, not a global '--version' flag. Correct the 'azd update' success follow-up message and the VS Code extension testing guide accordingly. --- cli/azd/cmd/update.go | 2 +- ext/vscode/TESTING_GUIDE.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/azd/cmd/update.go b/cli/azd/cmd/update.go index a9fc415d404..6be9e46d91d 100644 --- a/cli/azd/cmd/update.go +++ b/cli/azd/cmd/update.go @@ -306,7 +306,7 @@ func (a *updateAction) Run(ctx context.Context) (*actions.ActionResult, error) { "Updated azd to version %s! Changes take effect on next invocation.", versionInfo.Version, ), - FollowUp: "Run `azd --version` to confirm.", + FollowUp: "Run `azd version` to confirm.", }, }, nil } diff --git a/ext/vscode/TESTING_GUIDE.md b/ext/vscode/TESTING_GUIDE.md index 17aacb484ba..b6b8ff2bf7a 100644 --- a/ext/vscode/TESTING_GUIDE.md +++ b/ext/vscode/TESTING_GUIDE.md @@ -385,7 +385,7 @@ This guide provides a comprehensive list of all extension features and how to te **How to test**: - Command Palette → "Azure Developer CLI: Install CLI" - Follow installation prompts for your OS -- Verify installation with `azd --version` in terminal +- Verify installation with `azd version` in terminal - Should show version number ### 34. Login