From ed1178a65c01767614f2045177ff13c001b39be9 Mon Sep 17 00:00:00 2001 From: Mohammad Fares Date: Sat, 26 Jan 2019 16:43:48 +0100 Subject: [PATCH] Respect cwd from configs for recording --- commands/record.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/record.js b/commands/record.js index d455cbd..80fc48a 100644 --- a/commands/record.js +++ b/commands/record.js @@ -193,7 +193,7 @@ function command(argv) { var ptyProcess = di.pty.spawn(command, commandArguments, { cols: config.json.cols, rows: config.json.rows, - cwd: config.json.pwd, + cwd: config.json.cwd, env: di.deepmerge(process.env, config.json.env) });