Skip to content

Commit 01265d7

Browse files
committed
Fixed --verify flag in compile command
Fix #31
1 parent dffd6f3 commit 01265d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/upload/upload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func InitCommand() *cobra.Command {
4949
"Fully Qualified Board Name, e.g.: arduino:avr:uno")
5050
uploadCommand.Flags().StringVarP(&flags.port, "port", "p", "",
5151
"Upload port, e.g.: COM10 or /dev/ttyACM0")
52-
uploadCommand.Flags().BoolVarP(&flags.verbose, "verify", "t", false,
52+
uploadCommand.Flags().BoolVarP(&flags.verify, "verify", "t", false,
5353
"Verify uploaded binary after the upload.")
5454
uploadCommand.Flags().BoolVarP(&flags.verbose, "verbose", "v", false,
5555
"Optional, turns on verbose mode.")

0 commit comments

Comments
 (0)