From d66723ba10c3454eb97faa4ec0edeb3fb881ff1c Mon Sep 17 00:00:00 2001 From: Mohammad Fares Date: Mon, 23 Jul 2018 01:36:46 +0300 Subject: [PATCH] Change the default command for non-windows os to be bash -l --- commands/record.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/record.js b/commands/record.js index 57ed714..fba0af7 100644 --- a/commands/record.js +++ b/commands/record.js @@ -48,7 +48,7 @@ function normalizeConfig(config) { if (di.os.platform() === 'win32') { di.utility.changeYAMLValue(config, 'command', 'powershell.exe'); } else { - di.utility.changeYAMLValue(config, 'command', 'bash'); + di.utility.changeYAMLValue(config, 'command', 'bash -l'); } }