Update gen-filenames.js to generate posix paths (#18488)

This commit is contained in:
Nitish Sakhawalkar 2019-06-03 11:43:55 -07:00 коммит произвёл Jeremy Apthorp
Родитель 7f369c3292
Коммит 911cdd809a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -68,7 +68,7 @@ const main = async () => {
// Remove whitespace
.map(line => line.trim())
// Get the relative path
.map(line => path.relative(rootPath, line))
.map(line => path.relative(rootPath, line).replace(/\\/g, '/'))
// Only care about files in //electron
.filter(line => !line.startsWith('..'))
// Only care about our own files