From e1eda2ce65d342ccf76b16224ec69e6b7ec65f62 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 5 Jan 2026 12:20:27 +0500 Subject: [PATCH] `bunfmt` --- registry/coder/modules/vscode-web/README.md | 10 +++++----- registry/coder/modules/vscode-web/run.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/coder/modules/vscode-web/README.md b/registry/coder/modules/vscode-web/README.md index de25bdb4..59a98de4 100644 --- a/registry/coder/modules/vscode-web/README.md +++ b/registry/coder/modules/vscode-web/README.md @@ -76,11 +76,11 @@ Note: Either `workspace` or `folder` can be used, but not both simultaneously. T ```tf module "vscode-web" { - count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/vscode-web/coder" - version = "2.0.0" - agent_id = coder_agent.example.id - workspace = "/home/coder/coder.code-workspace" + count = data.coder_workspace.me.start_count + source = "registry.coder.com/coder/vscode-web/coder" + version = "2.0.0" + agent_id = coder_agent.example.id + workspace = "/home/coder/coder.code-workspace" accept_license = true } ``` diff --git a/registry/coder/modules/vscode-web/run.sh b/registry/coder/modules/vscode-web/run.sh index 88f91011..7189db04 100644 --- a/registry/coder/modules/vscode-web/run.sh +++ b/registry/coder/modules/vscode-web/run.sh @@ -59,7 +59,7 @@ find_vscode_server() { for dir in "$${server_dirs[@]}"; do if [ -d "$dir" ]; then # Find the most recent server version - local latest=$(ls -t "$dir" 2>/dev/null | head -1) + local latest=$(ls -t "$dir" 2> /dev/null | head -1) if [ -n "$latest" ] && [ -f "$dir/$latest/bin/code-server" ]; then echo "$dir/$latest/bin/code-server" return 0