Skip to content

Commit

Permalink
Use backslashes for include path on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
monkbroc committed Dec 18, 2024
1 parent b28f5bf commit b0a4f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/flash.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = class FlashCommand extends CLICommandBase {
updateFolder = path.dirname(input);
zipFile = path.basename(input);
const zipInfo = await this._extractFlashFilesFromZip(input);
includeDir = zipInfo.baseDir;
includeDir = path.normalize(zipInfo.baseDir);
filesToProgram = zipInfo.filesToProgram;
} else {
filesToProgram = files;
Expand Down

0 comments on commit b0a4f1d

Please sign in to comment.