File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
extensions/vscode/scripts Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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}
You can’t perform that action at this time.
0 commit comments