From 54d5e0bfea06c5ccd2c109c566f213a651d652b2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 25 Apr 2017 13:01:27 +0530 Subject: [PATCH] minor --- frappe/patches/v8_0/install_new_build_system_requirements.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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',