Skip to content

Commit

Permalink
Merge pull request #923 from OmniSharp/master
Browse files Browse the repository at this point in the history
Add platform detection for Gallium (#922)
  • Loading branch information
DustinCampbell committed Nov 12, 2016
2 parents 3038af9 + 5ece272 commit 5f817ff
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,11 @@ export class PlatformInformation {
return rhel_7;
case 'debian':
return debian_8;
case 'galliumos':
if (distributionVersion.startsWith("2.0")) {
return ubuntu_16_04;
}
break;
default:
return unknown_distribution;
}
Expand Down

0 comments on commit 5f817ff

Please sign in to comment.