Skip to content

Commit d3e7ffb

Browse files
committed
Address PR review feedback
1 parent 0a40e6c commit d3e7ffb

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Copilot Setup - Install xvfb and VS Code dependencies
6666
run: |
6767
sudo apt-get update
68-
sudo apt-get install -y xvfb libasound2 libgbm1 libgtk-3-0 libxshmfence1
68+
sudo apt-get install -y xvfb libasound2t64 libgbm1 libgtk-3-0 libxshmfence1
6969
7070
- name: Copilot Setup - Build server (extension dependency)
7171
run: npm run build -w server

extensions/vscode/scripts/download-vscode.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ try {
2020
const vscodeExecutablePath = await downloadAndUnzipVSCode(version);
2121
console.log(`✅ VS Code downloaded to: ${vscodeExecutablePath}`);
2222
} catch (error) {
23-
console.error('❌ Failed to download VS Code:', error.message);
23+
console.error(
24+
'❌ Failed to download VS Code:',
25+
error instanceof Error ? error.message : String(error),
26+
);
2427
process.exit(1);
2528
}

0 commit comments

Comments
 (0)