We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dea1fb commit d9ffd1aCopy full SHA for d9ffd1a
tools/install.py
@@ -133,7 +133,10 @@ def files(action):
133
if sys.platform != 'darwin':
134
output_prefix += 'lib.target/'
135
136
- action([output_prefix + output_file], 'bin/' + output_file)
+ if 'false' == variables.get('node_shared'):
137
+ action([output_prefix + output_file], 'bin/' + output_file)
138
+ else:
139
+ action([output_prefix + output_file], 'lib/' + output_file)
140
141
if not is_windows:
142
# Install ayo -> node compatibility symlink.
0 commit comments