1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2026-02-18 15:31:20 +01:00
Files
setup-dotnet/node_modules/path-key/index.js
2019-10-03 16:35:25 -07:00

14 lines
281 B
JavaScript

'use strict';
module.exports = opts => {
opts = opts || {};
const env = opts.env || process.env;
const platform = opts.platform || process.platform;
if (platform !== 'win32') {
return 'PATH';
}
return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path';
};