Skip to content

Commit a6c90aa

Browse files
author
yashksaini-coder
committed
chore(app): fix bash filename
1 parent 438e9e0 commit a6c90aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

registry/coder/modules/vscode-desktop/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe("vscode-desktop", async () => {
5555
const state = await runTerraformApply(import.meta.dir, {
5656
agent_id: "foo",
5757
folder: "/foo/bar",
58-
openRecent: "false",
58+
open_recent: "false",
5959
});
6060
expect(state.outputs.vscode_url.value).toBe(
6161
"vscode://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN",

registry/coder/modules/vscode-desktop/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ resource "coder_script" "vscode_desktop_setup" {
7676
run_on_stop = false
7777
timeout = 300
7878

79-
script = templatefile("${path.module}/setup.sh", {
79+
script = templatefile("${path.module}/run.sh", {
8080
EXTENSIONS = jsonencode(var.extensions)
8181
SETTINGS = jsonencode(var.settings)
8282
FOLDER = var.folder

0 commit comments

Comments
 (0)