We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d067b commit 7a2db05Copy full SHA for 7a2db05
src/remote.ts
@@ -394,11 +394,7 @@ export class Remote {
394
if (this.mode === vscode.ExtensionMode.Production) {
395
binaryPath = await this.storage.fetchBinary()
396
} else {
397
- if (os.platform() === "darwin") {
398
- binaryPath = path.join(os.tmpdir(), "coder", "coder")
399
- } else {
400
- binaryPath = path.join(os.tmpdir(), "coder")
401
- }
+ binaryPath = path.join(os.tmpdir(), "coder")
402
}
403
if (!binaryPath) {
404
throw new Error("Failed to fetch the Coder binary!")
0 commit comments