Change the default command for non-windows os to be bash -l

This commit is contained in:
Mohammad Fares 2018-07-23 01:36:46 +03:00
parent d1153e58ba
commit d66723ba10
1 changed files with 1 additions and 1 deletions

View File

@ -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');
}
}