From 9916c78ce23ffb8dde835517d9b37c2e20f38259 Mon Sep 17 00:00:00 2001 From: Lee Dohm Date: Mon, 7 Mar 2016 14:27:19 -0800 Subject: [PATCH] Add --interactive option to get the user's full PATH with all the trimmings --- src/project.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.coffee b/src/project.coffee index d91ec3a39..e13942f28 100644 --- a/src/project.coffee +++ b/src/project.coffee @@ -314,7 +314,7 @@ class Project extends Model getShellEnv: -> shell = process.env.SHELL ? "/bin/bash" - results = child_process.spawnSync shell, ["--login"], input: "env", encoding: "utf8" + results = child_process.spawnSync shell, ["--login", "--interactive"], input: "env", encoding: "utf8" return if results.error? return unless results.stdout and results.stdout.length > 0