We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9780801 commit 135a976Copy full SHA for 135a976
cmd/sqlcmd/sqlcmd.go
@@ -120,7 +120,9 @@ func (a SQLCmdArguments) authenticationMethod(hasPassword bool) string {
120
func Execute(version string) {
121
ctx := kong.Parse(&args, kong.NoDefaultHelp())
122
if args.Version {
123
- ctx.Printf("%v", version)
+ ctx.Printf("%v\n", version)
124
+ fmt.Println(localizer.Sprintf("Legal docs and information: aka.ms/SqlcmdLegal"))
125
+ fmt.Println(localizer.Sprintf("Third party notices: aka.ms/SqlcmdNotices"))
126
os.Exit(0)
127
}
128
if args.Help {
0 commit comments