Skip to content

Commit 6988889

Browse files
committed
By-pass shell checking tool on Windows
1 parent 0129877 commit 6988889

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

binding.gyp

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
2-
'variables':
3-
{
4-
'shared%': '<!(node ./util/has_lib.js)'
5-
},
62
'conditions':
73
[
8-
['shared=="true" or OS=="win"', {
4+
['OS=="win"', {
95
'includes': ['shared.gypi']
106
}, {
11-
'includes': ['static.gypi']
7+
'variables':
8+
{
9+
'shared%': '<!(node ./util/has_lib.js)'
10+
},
11+
'conditions':
12+
[
13+
['shared=="true"', {
14+
'includes': ['shared.gypi']
15+
}, {
16+
'includes': ['static.gypi']
17+
}]
18+
]
1219
}]
1320
]
1421
}

0 commit comments

Comments
 (0)