diff --git a/src/util.coffee b/src/util.coffee index df9a0e6..d03a7b3 100644 --- a/src/util.coffee +++ b/src/util.coffee @@ -233,7 +233,7 @@ getUserLocale = (callback) -> parseEnv = (stdout) -> env = {} for line in stdout.split "\n" - if matches = line.match /([^=]+)=(.+)/ + if matches = line.match /([^=]+)=(.*)/ [match, name, value] = matches env[name] = value env