Fix executing npm under cygwin.

This commit is contained in:
Cheng Zhao 2014-04-29 11:07:02 +08:00
Родитель d15bb62f72
Коммит ec63cc09db
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -11,7 +11,7 @@ from lib.util import execute, scoped_cwd
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
VENDOR_DIR = os.path.join(SOURCE_ROOT, 'vendor')
PYTHON_26_URL = 'https://chromium.googlesource.com/chromium/deps/python_26'
NPM = 'npm.cmd' if sys.platform == 'win32' else 'npm'
NPM = 'npm.cmd' if sys.platform in ['win32', 'cygwin'] else 'npm'
def main():