From dae3882368a6cefd57e4f70a4fcc5131f2e0cf17 Mon Sep 17 00:00:00 2001 From: moshee Date: Wed, 12 Nov 2014 09:35:03 -0800 Subject: [PATCH] Forgot to put path in quotes. --- lib/pipe.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipe.coffee b/lib/pipe.coffee index 3a455ee..94b5627 100644 --- a/lib/pipe.coffee +++ b/lib/pipe.coffee @@ -26,7 +26,7 @@ module.exports = stdout = '' stderr = '' - commandString = "cd #{atom.project.path} && #{commandString}" + commandString = "cd '#{atom.project.path}' && #{commandString}" proc = spawn process.env.SHELL, ["-l", "-c", commandString] proc.stdout.on 'data', (text) -> -- 2.39.2