Skip to content

Commit 614c234

Browse files
gucong3000zkat
authored andcommitted
run-script: Do not use SET to fetch the env in git-bash or cygwin
Credit: @gucong3000 PR-URL: npm/npm#19418 Reviewed-By: @iarna
1 parent 80b7e48 commit 614c234

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/run-script.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ var chain = require('slide').chain
99
var usage = require('./utils/usage')
1010
var output = require('./utils/output.js')
1111
var didYouMean = require('./utils/did-you-mean')
12+
var isWindowsShell = require('./utils/is-windows-shell.js')
1213

1314
runScript.usage = usage(
1415
'run-script',
@@ -139,7 +140,7 @@ function run (pkg, wd, cmd, args, cb) {
139140
if (cmd === 'test') {
140141
pkg.scripts.test = 'echo \'Error: no test specified\''
141142
} else if (cmd === 'env') {
142-
if (process.platform === 'win32') {
143+
if (isWindowsShell) {
143144
log.verbose('run-script using default platform env: SET (Windows)')
144145
pkg.scripts[cmd] = 'SET'
145146
} else {

lib/utils/is-windows-bash.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
'use strict'
22
var isWindows = require('./is-windows.js')
3-
module.exports = isWindows && /^MINGW(32|64)$/.test(process.env.MSYSTEM)
3+
module.exports = isWindows &&
4+
(/^MINGW(32|64)$/.test(process.env.MSYSTEM) || process.env.TERM === "cygwin")

0 commit comments

Comments
 (0)