Skip to content

Commit

Permalink
By-pass shell script checking tool on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
piranna committed Oct 17, 2020
1 parent 0129877 commit 304b5a9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions binding.gyp
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
'variables':
{
'shared%': '<!(node ./util/has_lib.js)'
},
'conditions':
[
['shared=="true" or OS=="win"', {
['OS=="win"', {
'variables': {'shared%': 'true'}
}, {
'variables': {'shared%': '<!(node ./util/has_lib.js)'}
}],
['shared=="true"', {
'includes': ['shared.gypi']
}, {
'includes': ['static.gypi']
Expand Down

0 comments on commit 304b5a9

Please sign in to comment.