Skip to content

Commit

Permalink
Fix command line argumnet error
Browse files Browse the repository at this point in the history
  • Loading branch information
Nan Huang committed Dec 28, 2021
1 parent 70ff562 commit 0859332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/oramodelgen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func main() {
flag.StringVar(&configFile, "config", "", "Configuration YAML file")
flag.StringVar(&dbConnString, "dbConnectString", "", "Oracle database connection string.")
flag.StringVar(&modelFile, "model", "m", "Model YAML file")
flag.StringVar(&outputDir, "outputPackage", "P", "Output package code under given directory")
flag.StringVar(&outputDir, "outdir", "P", "Output package code under given directory")
flag.StringVar(&outputPackage, "outputPackage", "P", "Output code under given package")
flag.StringVar(&logLevelName, "log-level", "warn", "Log level")
flag.BoolVar(&printVersion, "version", false, "Show version of the executable")
Expand Down

0 comments on commit 0859332

Please sign in to comment.