From c58f8cd62501ce4642266c8f17a06d6a309dbca8 Mon Sep 17 00:00:00 2001 From: ArthurZheng <869705086@qq.com> Date: Tue, 30 May 2023 22:17:13 +0800 Subject: [PATCH] Display a prompt message at the beginning of the build to prevent the user from mistakenly thinking that the program is stuck when the arduino-cli starts slowly in some cases --- src/upload/arduino.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/upload/arduino.js b/src/upload/arduino.js index a0a5d9b7..5c922ccf 100644 --- a/src/upload/arduino.js +++ b/src/upload/arduino.js @@ -102,6 +102,7 @@ class Arduino { }); const arduinoBuilder = spawn(this._arduinoCliPath, args); + this._sendstd(`Start building...\n`); arduinoBuilder.stderr.on('data', buf => { const data = buf.toString();