You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!fs.existsSync(__dirname + '/build')){
fs.mkdirSync(__dirname + '/build');
}
above line 22 of postInstall.js. When creating the file ..(__dirname, './build/jvm_dll_path.json) I get an error because the empty directory does not exists.
I'd like to create a PR to add this at it should not affect any other changes and will fix the case where the build directory does not exist when using npm to install.
The text was updated successfully, but these errors were encountered:
I'd like to add
above line 22 of
postInstall.js
. When creating the file..(__dirname, './build/jvm_dll_path.json)
I get an error because the empty directory does not exists.I'd like to create a PR to add this at it should not affect any other changes and will fix the case where the build directory does not exist when using npm to install.
The text was updated successfully, but these errors were encountered: