Skip to content

Commit

Permalink
fix template string in extension
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmd5 committed Oct 8, 2022
1 parent b328aa0 commit 6cda27e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION="2.4.8"
VERSION="2.4.9"
MAJOR=2
MINOR=4
PATCH=8
PATCH=9
2 changes: 1 addition & 1 deletion vscode-bebop/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function getCompilerPlatformPath() {
throw new Error(`unsupported OS: ${os}`);
}
};
return `compiler/$${osName()}/${cpu}/bebopc${os === "win32" ? ".exe" : ""}`;
return `compiler/${osName()}/${cpu}/bebopc${os === "win32" ? ".exe" : ""}`;
}

export function deactivate() { }

0 comments on commit 6cda27e

Please sign in to comment.