From 894e1ad3cc51bfa6cb3054f12c0e47e5b71b42d3 Mon Sep 17 00:00:00 2001 From: Umberto Baldi Date: Thu, 3 Feb 2022 17:10:30 +0100 Subject: [PATCH] fix help message --- cmd/compile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/compile.go b/cmd/compile.go index fc5275e..4f00f9a 100644 --- a/cmd/compile.go +++ b/cmd/compile.go @@ -69,7 +69,7 @@ var compileCmd = &cobra.Command{ ├── README.md <--contains information regarding libraries and core to install in order to reproduce the original build environment └── sketch └── sketch.ino <-- the actual sketch we can recompile with the arduino-cli later`, - Example: os.Args[0] + `compile -b arduino:samd:mkrwifi1010 sketch/sketch.ino`, + Example: os.Args[0] + ` compile -b arduino:samd:mkrwifi1010 sketch/sketch.ino`, Args: cobra.ExactArgs(1), // the path of the sketch to build Run: compileSketch, }