File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 155
155
],
156
156
"arduino" : {
157
157
"cli" : {
158
- "version" : " 0.23.0"
158
+ "version" : {
159
+ "owner" : " arduino" ,
160
+ "repo" : " arduino-cli" ,
161
+ "commitish" : " master"
162
+ }
159
163
},
160
164
"fwuploader" : {
161
165
"version" : " 2.2.0"
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ export class ArduinoFirmwareUploaderImpl implements ArduinoFirmwareUploader {
90
90
} catch ( e ) {
91
91
throw e ;
92
92
} finally {
93
- this . monitorManager . notifyUploadFinished ( board , port ) ;
93
+ await this . monitorManager . notifyUploadFinished ( board , port ) ;
94
94
return output ;
95
95
}
96
96
}
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
224
224
throw new Error ( errorMessage ) ;
225
225
} finally {
226
226
this . uploading = false ;
227
- this . monitorManager . notifyUploadFinished ( board , port ) ;
227
+ await this . monitorManager . notifyUploadFinished ( board , port ) ;
228
228
}
229
229
}
230
230
@@ -288,7 +288,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
288
288
throw new Error ( errorMessage ) ;
289
289
} finally {
290
290
this . uploading = false ;
291
- this . monitorManager . notifyUploadFinished ( board , port ) ;
291
+ await this . monitorManager . notifyUploadFinished ( board , port ) ;
292
292
}
293
293
}
294
294
You can’t perform that action at this time.
0 commit comments