From 9c868ce337a981b641b9d8ba154607b57b51307e Mon Sep 17 00:00:00 2001 From: Dave Simpson <45690499+davegarthsimpson@users.noreply.github.com> Date: Wed, 22 Feb 2023 13:30:49 +0100 Subject: [PATCH] modify tempBuildFolderMD5Hash folderName --- arduino-ide-extension/src/node/sketches-service-impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide-extension/src/node/sketches-service-impl.ts b/arduino-ide-extension/src/node/sketches-service-impl.ts index a1e53a9ec..b6214a241 100644 --- a/arduino-ide-extension/src/node/sketches-service-impl.ts +++ b/arduino-ide-extension/src/node/sketches-service-impl.ts @@ -628,7 +628,7 @@ export class SketchesServiceImpl .update(path) .digest('hex') .toUpperCase(); - const folderName = `arduino-sketch-${hash}`; + const folderName = `arduino/sketches/${hash}`; return folderName; }