Skip to content

Commit 3d1abca

Browse files
committed
commands:compile Change error message for copying output file
Signed-off-by: Matteo Suppo <matteo.suppo@gmail.com>
1 parent 9dc2cca commit 3d1abca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/compile/compile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ func run(cmd *cobra.Command, args []string) {
261261
src := outputPath
262262
dst := filepath.Join(sketchPath, sketch.Name+"."+fqbn+ext)
263263
if err = copyFile(src, dst); err != nil {
264-
formatter.PrintError(err, "Error copying hex file.")
264+
formatter.PrintError(err, "Error copying output file.")
265265
os.Exit(commands.ErrGeneric)
266266
}
267267

0 commit comments

Comments
 (0)