Skip to content

Commit

Permalink
Always use sh
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Jan 25, 2016
1 parent 5188577 commit 415522a
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' : '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 415522a

Please sign in to comment.