build: fail a build if some hooks don't succeed (#16369)
This commit is contained in:
parent
fd8b9450ee
commit
0a5adfe365
2 changed files with 22 additions and 4 deletions
18
script/lib/npm.py
Normal file
18
script/lib/npm.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
|
||||
def npm(*npm_args):
|
||||
call_args = [__get_executable_name()] + list(npm_args)
|
||||
subprocess.check_call(call_args)
|
||||
|
||||
|
||||
def __get_executable_name():
|
||||
executable = 'npm'
|
||||
if sys.platform == 'win32':
|
||||
executable += '.cmd'
|
||||
return executable
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
npm(*sys.argv[1:])
|
Loading…
Add table
Add a link
Reference in a new issue