File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 3401
3401
" darwin"
3402
3402
],
3403
3403
"architectures" : [
3404
- " x64"
3404
+ " x64" ,
3405
+ " arm64"
3405
3406
],
3406
3407
"binaries" : [
3407
3408
" ./debugAdapters/bin/OpenDebugAD7"
Original file line number Diff line number Diff line change @@ -209,9 +209,6 @@ async function offlineInstallation(info: PlatformInformation): Promise<void> {
209
209
setInstallationStage ( 'cleanUpUnusedBinaries' ) ;
210
210
await cleanUpUnusedBinaries ( info ) ;
211
211
212
- setInstallationStage ( 'makeBinariesExecutable' ) ;
213
- await makeBinariesExecutable ( ) ;
214
-
215
212
setInstallationStage ( 'makeOfflineBinariesExecutable' ) ;
216
213
await makeOfflineBinariesExecutable ( info ) ;
217
214
@@ -227,9 +224,6 @@ async function onlineInstallation(info: PlatformInformation): Promise<void> {
227
224
228
225
await downloadAndInstallPackages ( info ) ;
229
226
230
- setInstallationStage ( 'makeBinariesExecutable' ) ;
231
- await makeBinariesExecutable ( ) ;
232
-
233
227
setInstallationStage ( 'rewriteManifest' ) ;
234
228
await rewriteManifest ( ) ;
235
229
@@ -262,10 +256,6 @@ async function downloadAndInstallPackages(info: PlatformInformation): Promise<vo
262
256
} ) ;
263
257
}
264
258
265
- function makeBinariesExecutable ( ) : Promise < void > {
266
- return util . allowExecution ( util . getDebugAdaptersPath ( "OpenDebugAD7" ) ) ;
267
- }
268
-
269
259
function packageMatchesPlatform ( pkg : IPackage , info : PlatformInformation ) : boolean {
270
260
return PlatformsMatch ( pkg , info ) &&
271
261
( pkg . architectures === undefined || ArchitecturesMatch ( pkg , info ) ) &&
You can’t perform that action at this time.
0 commit comments