diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a770bcf5..61765affb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +* Fixed: Search never completing in the command panel + * Fixed: cmd-n now works when no windows are open * Fixed: Error selecting a grammar for an untitled editor diff --git a/src/stdlib/buffered-process.coffee b/src/stdlib/buffered-process.coffee index 94c75137c..a24381999 100644 --- a/src/stdlib/buffered-process.coffee +++ b/src/stdlib/buffered-process.coffee @@ -43,7 +43,7 @@ class BufferedProcess addNodeDirectoryToPath: (options) -> options.env ?= process.env pathSegments = [] - nodeDirectoryPath = path.resolve(process.execPath, '..', '..', '..', '..', 'Resources') + nodeDirectoryPath = path.resolve(process.execPath, '..', '..', '..', '..', '..', 'Resources') pathSegments.push(nodeDirectoryPath) pathSegments.push(options.env.PATH) if options.env.PATH options.env = _.extend({}, options.env, PATH: pathSegments.join(path.delimiter))