Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
fix(worker): fix wet run option
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Feb 6, 2024
1 parent bbfcfd3 commit ccd9082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func prepareGspatialjp(conf *Config) {
flag := flag.NewFlagSet("prepare-gspatialjp", flag.ExitOnError)
flag.StringVar(&config.ProjectID, "project", "", "CMS project id")
flag.StringVar(&config.CityItemID, "city", "", "CMS city item id")
flag.BoolVar(&config.WetRun, "wet", false, "wet run")
flag.BoolVar(&config.WetRun, "wetrun", false, "wet run")

if err := flag.Parse(os.Args[2:]); err != nil {
panic(err)
Expand Down

0 comments on commit ccd9082

Please sign in to comment.