diff --git a/script/update.py b/script/update.py index bc491a907ae2..605b5aefc395 100755 --- a/script/update.py +++ b/script/update.py @@ -31,10 +31,10 @@ def update_gyp(): python = sys.executable if sys.platform == 'cygwin': python = os.path.join('vendor', 'python_26', 'python.exe') - subprocess.check_call([python, gyp, - '-f', 'ninja', '--depth', '.', 'atom.gyp', - '-Icommon.gypi', '-Ivendor/brightray/brightray.gypi', - '-Dtarget_arch=ia32', '-Dlibrary=static_library']) + subprocess.call([python, gyp, + '-f', 'ninja', '--depth', '.', 'atom.gyp', + '-Icommon.gypi', '-Ivendor/brightray/brightray.gypi', + '-Dtarget_arch=ia32', '-Dlibrary=static_library']) if __name__ == '__main__':