From c5f6a00851e9d10e612bdc2838a1a4431bf337e1 Mon Sep 17 00:00:00 2001 From: DevelopmentCats Date: Tue, 24 Feb 2026 15:35:12 -0600 Subject: [PATCH] chore: bun fmt --- registry/coder/modules/vscode-web/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registry/coder/modules/vscode-web/run.sh b/registry/coder/modules/vscode-web/run.sh index eb9acd16..98b6caf9 100644 --- a/registry/coder/modules/vscode-web/run.sh +++ b/registry/coder/modules/vscode-web/run.sh @@ -262,9 +262,9 @@ install_extension_vsix() { local tmp_dir="/tmp/ext-$ext_id" if command -v curl > /dev/null 2>&1; then - curl -fsSL "$vsix_url" -o "$tmp_vsix" 2>/dev/null + curl -fsSL "$vsix_url" -o "$tmp_vsix" 2> /dev/null elif command -v wget > /dev/null 2>&1; then - wget -q "$vsix_url" -O "$tmp_vsix" 2>/dev/null + wget -q "$vsix_url" -O "$tmp_vsix" 2> /dev/null else echo "Failed to install extension $ext_id: neither curl nor wget available" return 1 @@ -278,7 +278,7 @@ install_extension_vsix() { # Extract VSIX (it's a ZIP file) rm -rf "$tmp_dir" mkdir -p "$tmp_dir" - if ! unzip -q "$tmp_vsix" -d "$tmp_dir" 2>/dev/null; then + if ! unzip -q "$tmp_vsix" -d "$tmp_dir" 2> /dev/null; then echo "Failed to extract extension: $ext_id" rm -f "$tmp_vsix" return 1