Note to update GetClrDbg.sh in MIEngine. (#751)

* Note to update GetClrDbg.sh in MIEngine.
This commit is contained in:
Rajkumar Janakiraman 2016-09-08 14:05:28 -07:00 коммит произвёл GitHub
Родитель 471c8639d1
Коммит 716f2f5df6
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -30,6 +30,7 @@ export function getCurrentPlatform() {
else if (process.platform === 'linux') {
// Get the text of /etc/os-release to discover which Linux distribution we're running on.
// For details: https://www.freedesktop.org/software/systemd/man/os-release.html
// When any new distro or version is added, please update GetClrDbg.sh in MIEngine or inform the contributers of MIEngine.
const text = child_process.execSync('cat /etc/os-release').toString();
const lines = text.split('\n');