diff --git a/cmd/sqlite3.go b/cmd/sqlite3.go index 9533f6e..c27df40 100644 --- a/cmd/sqlite3.go +++ b/cmd/sqlite3.go @@ -29,7 +29,7 @@ var sqlite3Command = &cobra.Command{ func init() { sqlite3Command.Flags().StringP("file", "f", "", "database file path") - sqlite3Command.MarkFlagRequired("file") + _ = sqlite3Command.MarkFlagRequired("file") rootCmd.AddCommand(sqlite3Command) }