check for env.path case-insesitive in windows

This commit is contained in:
Tony Brix 2016-07-11 16:40:23 -05:00 committed by GitHub
parent 88a8edbe95
commit 24555bcd75
1 changed files with 8 additions and 0 deletions

View File

@ -170,6 +170,14 @@ module.exports = class Beautifier
new Promise((resolve, reject) =>
options.path ?= env.PATH
if @isWindows
# Environment variables are case-insensitive in windows
# Check env for a case-insensitive 'path' variable
if !options.path
for i of env
if i.toLowerCase() is "path"
options.path = env[i]
break
# Trick node-which into including files
# with no extension as executables.
# Put empty extension last to allow for other real extensions first