We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd09346 commit ed555f9Copy full SHA for ed555f9
arduino-ide-extension/src/browser/sketches-service-client-impl.ts
@@ -273,6 +273,14 @@ export class SketchesServiceClientImpl
273
return false;
274
}
275
276
+ if (
277
+ toCheck.scheme === 'file' &&
278
+ toCheck.path.fsPath().endsWith('launch.json')
279
+ // TODO: make sure it's from the build folder of the current sketch
280
+ ) {
281
+ return false;
282
+ }
283
+
284
const isCloudSketch = toCheck
285
.toString()
286
.includes(`${REMOTE_SKETCHBOOK_FOLDER}/${ARDUINO_CLOUD_FOLDER}`);
0 commit comments