We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3872990 commit e99f1dbCopy full SHA for e99f1db
internal/cmd/cmd.go
@@ -33,7 +33,7 @@ func Do(args []string, stdin io.Reader, stdout io.Writer, stderr io.Writer) int
33
rootCmd := &cobra.Command{Use: "sqlc", SilenceUsage: true}
34
rootCmd.PersistentFlags().StringP("file", "f", "", "specify an alternate config file (default: sqlc.yaml)")
35
rootCmd.PersistentFlags().BoolP("experimental", "x", false, "DEPRECATED: enable experimental features (default: false)")
36
- rootCmd.PersistentFlags().BoolP("no-remote", "nr", false, "disable remote execution (default: false)")
+ rootCmd.PersistentFlags().Bool("no-remote", false, "disable remote execution (default: false)")
37
38
rootCmd.AddCommand(checkCmd)
39
rootCmd.AddCommand(diffCmd)
0 commit comments