Compare commits

...

1 Commits
main ... 3.5.1

Author SHA1 Message Date
Florian Baumann
4bf73c4aeb fix detail view 2023-04-25 09:05:14 +02:00

View File

@ -16,7 +16,7 @@ func init() {
cardCmd.Flags().StringVarP(&name, "name", "n", "", "Name of the card (regex compatible)")
cardCmd.Flags().StringVarP(&oracle, "oracle", "o", "", "Contains string in card text")
cardCmd.Flags().StringVarP(&cardType, "type", "t", "", "Contains string in card type line")
cardCmd.Flags().BoolVarP(&detail, "detail", "d", true, "Show details for cards (url)")
cardCmd.Flags().BoolVarP(&detail, "detail", "d", false, "Show details for cards (url)")
rootCmd.AddCommand(cardCmd)
}