Skip to content

Commit d39ab39

Browse files
Add Arch Linux debugger support (#1017)
This updates platform.ts to treat Arch Linux like Ubuntu 16.04.
1 parent 2ec8698 commit d39ab39

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/platform.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,10 @@ export class PlatformInformation {
339339
return ubuntu_16_04;
340340
}
341341
break;
342+
case 'arch':
343+
// NOTE: currently Arch Linux seems to be compatible enough with Ubuntu 16 that this works,
344+
// though in the future this may need to change as Arch follows a rolling release model.
345+
return ubuntu_16_04;
342346
default:
343347
return unknown_distribution;
344348
}

0 commit comments

Comments
 (0)