diff --git a/frappe/patches/v8_0/install_new_build_system_requirements.py b/frappe/patches/v8_0/install_new_build_system_requirements.py index 818228e9a6..a570300040 100644 --- a/frappe/patches/v8_0/install_new_build_system_requirements.py +++ b/frappe/patches/v8_0/install_new_build_system_requirements.py @@ -5,11 +5,11 @@ def execute(): p = Popen(['which', 'brew'], stdout=PIPE, stderr=PIPE) output, err = p.communicate() if output: - subprocess.call(['brew', 'upgrade', 'node']) + call(['brew', 'upgrade', 'node']) else: print 'Please update your NodeJS version' - subprocess.call([ + call([ 'npm', 'install', 'babel-core', 'less',