diff --git a/package.json b/package.json index f609031..d0dccda 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "url": "https://github.com/Trivernis/snekdown-vscode-extension.git" }, "description": "Preview and commands for the snekdown markdown flavour", - "version": "0.9.1", + "version": "0.9.2", "engines": { "vscode": "^1.52.0" }, diff --git a/src/snekdown-wrapper.ts b/src/snekdown-wrapper.ts index ec2104e..89b24de 100644 --- a/src/snekdown-wrapper.ts +++ b/src/snekdown-wrapper.ts @@ -75,7 +75,7 @@ export class SnekdownWrapper { switch (os.platform()) { case 'win32': execPath = this.buildExecutablePath(SNEKDOWN_FILE_WINDOWS); - await fetch(SNEKDOWN_FILE_WINDOWS).then(res => { + await fetch(SNEKDOWN_URL_WINDOWS).then(res => { fs.writeFileSync(execPath, res.buffer); }); this.executable = execPath;