Skip to content

Commit

Permalink
Merge pull request alexanderGugel#64 from rstacruz/bash-only
Browse files Browse the repository at this point in the history
Support non-POSIX shells (alexanderGugel#62)
  • Loading branch information
alexanderGugel committed Jan 25, 2016
2 parents 849a76f + 415522a commit 0252b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var config = {
httpProxy: process.env.IED_HTTP_PROXY || process.env.HTTP_PROXY || null,
httpsProxy: process.env.IED_HTTPS_PROXY || process.env.HTTPS_PROXY || null,
requestRetries: 5,
sh: process.env.IED_SH || (process.platform === 'win32' ? process.env.comspec || 'cmd' : process.env.SHELL || 'bash'),
sh: process.env.IED_SH || (process.platform === 'win32' ? process.env.comspec || 'cmd' : 'sh'),
shFlag: process.env.IED_SH_FLAG || (process.platform === 'win32' ? '/d /s /c' : '-c')
}

Expand Down

0 comments on commit 0252b32

Please sign in to comment.