Skip to content

Commit

Permalink
fix cli bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
future-mano committed Oct 1, 2022
1 parent 34b2ac5 commit cc0052c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var (

compareCommand = app.Command("compare", "Compare database to excel file")
compareFile = compareCommand.Arg("file", "Target excel file path (e.g. want.xlsx)").Required().NoEnvar().ExistingFile()
enableDumpCSVCompare = loadCommand.Flag("enableDumpCSV", "Enable excel file dump to csv for code review or version history").NoEnvar().Bool()
enableDumpCSVCompare = compareCommand.Flag("enableDumpCSV", "Enable excel file dump to csv for code review or version history").NoEnvar().Bool()
)

func Main() {
Expand Down

0 comments on commit cc0052c

Please sign in to comment.