mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-04-23 19:31:24 +08:00
Fix executing npm under cygwin.
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user