From 6a055c8930c9fe4c0ca1a3eb91b04f2343a2cae9 Mon Sep 17 00:00:00 2001 From: Declan de Wet Date: Thu, 13 Mar 2014 18:07:15 -0400 Subject: [PATCH] changed command separator to fix path issue on windows OS --- lib/api/init.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/init.coffee b/lib/api/init.coffee index 5a049d5..2bc2b62 100644 --- a/lib/api/init.coffee +++ b/lib/api/init.coffee @@ -78,7 +78,7 @@ class Init extends Base nodefn.call(@config.after, @) update_template = -> - nodefn.call(exec, "cd #{@sprout_path}; git pull") + nodefn.call(exec, "cd #{@sprout_path} && git pull") copy_template = -> nodefn.call(ncp, path.join(@sprout_path, 'root'), @target)