зеркало из https://github.com/electron/electron.git
19 строки
488 B
Python
19 строки
488 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
|
|
cmd = "npm"
|
|
if sys.platform == "win32":
|
|
cmd += ".cmd"
|
|
args = [cmd, "run",
|
|
"--prefix",
|
|
SOURCE_ROOT
|
|
] + sys.argv[1:]
|
|
try:
|
|
subprocess.check_output(args, stderr=subprocess.STDOUT)
|
|
except subprocess.CalledProcessError, e:
|
|
print("NPM script '" + sys.argv[2] + "' failed with code '" + str(e.returncode) + "':\n" + e.output)
|
|
sys.exit(e.returncode)
|