We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59035e3 commit 35fafa0Copy full SHA for 35fafa0
scripts/prebuild
@@ -90,14 +90,10 @@ function download_prerequisites(callback)
90
// Copy musl headers for compilation on OS X
91
function copy_headers(callback)
92
{
93
- const MUSL_INCLUDE_PATH = DEPS+'/musl/include'
94
- const DARWIN_MUSL_PATH = DEPS+'/darwin-musl'
95
-
96
97
async.each(require('../resources/darwin-headers.json'),
98
function(file, callback)
99
100
- fs.copy(MUSL_INCLUDE_PATH+'/'+file, DARWIN_MUSL_PATH+'/'+file, callback)
+ fs.copy(DEPS+'/musl/include/'+file, DEPS+'/darwin-musl/'+file, callback)
101
},
102
callback)
103
}
0 commit comments