We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9133101 commit cc81265Copy full SHA for cc81265
cli/compile/compile.go
@@ -83,6 +83,7 @@ func NewCommand() *cobra.Command {
83
}
84
85
command.Flags().StringVarP(&fqbn, "fqbn", "b", "", tr("Fully Qualified Board Name, e.g.: arduino:avr:uno"))
86
+ command.MarkFlagRequired("fqbn")
87
command.Flags().BoolVar(&showProperties, "show-properties", false, tr("Show all build properties used instead of compiling."))
88
command.Flags().BoolVar(&preprocess, "preprocess", false, tr("Print preprocessed code to stdout instead of compiling."))
89
command.Flags().StringVar(&buildCachePath, "build-cache-path", "", tr("Builds of 'core.a' are saved into this path to be cached and reused."))
0 commit comments