File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff 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`
2929func (c * Install ) SubCommands () []cmdparser.Command {
3030 dependencies := c .Dependencies ()
3131
Original file line number Diff line number Diff 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
1414type 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 }
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ type GetTags struct {
1515func (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" },
You can’t perform that action at this time.
0 commit comments