Skip to content

Commit 35c5869

Browse files
committed
Move to Azure SQL Edge nomenclature
1 parent 41d640c commit 35c5869

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

cmd/modern/root/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (c *Install) DefineCommand(...cmdparser.CommandOptions) {
2525
}
2626

2727
// SubCommands sets up the sub-commands for `sqlcmd install` such as
28-
// `sqlcmd install mssql` and `sqlcmd install mssql-edge`
28+
// `sqlcmd install mssql` and `sqlcmd install azsql-edge`
2929
func (c *Install) SubCommands() []cmdparser.Command {
3030
dependencies := c.Dependencies()
3131

cmd/modern/root/install/edge.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/microsoft/go-sqlcmd/internal/pal"
1111
)
1212

13-
// Edge implements the `sqlcmd install mssql-edge command and sub-commands
13+
// Edge implements the `sqlcmd install azsql-edge command and sub-commands
1414
type Edge struct {
1515
cmdparser.Cmd
1616
MssqlBase
@@ -20,11 +20,11 @@ func (c *Edge) DefineCommand(...cmdparser.CommandOptions) {
2020
const repo = "azure-sql-edge"
2121

2222
options := cmdparser.CommandOptions{
23-
Use: "mssql-edge",
24-
Short: "Install SQL Server Edge",
23+
Use: "azsql-edge",
24+
Short: "Install Azure Sql Edge",
2525
Examples: []cmdparser.ExampleOptions{{
26-
Description: "Install SQL Server Edge in a container",
27-
Steps: []string{"sqlcmd install mssql-edge"}}},
26+
Description: "Install Azure SQL Edge in a container",
27+
Steps: []string{"sqlcmd install azsql-edge"}}},
2828
Run: c.MssqlBase.Run,
2929
SubCommands: c.SubCommands(),
3030
}

cmd/modern/root/install/edge/get-tags.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ type GetTags struct {
1515
func (c *GetTags) DefineCommand(...cmdparser.CommandOptions) {
1616
options := cmdparser.CommandOptions{
1717
Use: "get-tags",
18-
Short: "Get tags available for mssql edge install",
18+
Short: "Get tags available for Azure SQL Edge install",
1919
Examples: []cmdparser.ExampleOptions{
2020
{
2121
Description: "List tags",
22-
Steps: []string{"sqlcmd install mssql-edge get-tags"},
22+
Steps: []string{"sqlcmd install azsql-edge get-tags"},
2323
},
2424
},
2525
Aliases: []string{"gt", "lt"},

0 commit comments

Comments
 (0)