Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 41a76c3

Browse files
authored
Merge pull request #22 from AlbyIanna/err-nil-fix
fixed arduino connector not working properly
2 parents 824395a + c4c8b64 commit 41a76c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ func spawnProcess(filepath string, sketch *SketchStatus, status *Status) (int, i
585585
if err != nil {
586586
fmt.Println(fmt.Sprint(err) + ": " + stderr_buf.String())
587587
}
588-
fmt.Println("sketch exited " + err.Error())
588+
fmt.Println("sketch exited ")
589589
}()
590590

591591
return cmd.Process.Pid, stdout, stderr, err

0 commit comments

Comments
 (0)