-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fswin fails to build on Linux or MacOS #26
Comments
the npm package is using a index.js to detect os, that makes
|
@xxoo Did this package had this issue in older versions? See the CI errors in I am updating fswin just in case if that is solved in the newer versions. |
@aminya i don't think so. 'use strict';
if (process.platform === 'win32') {
module.exports = require((process.versions && process.versions.electron ? './electron/' : './node/') + process.arch + '/fswin.node');
} else {
module.exports = null;
} |
winattr package is out of date. I have fixed it in this PR. It is published in my @aminya/winattr package. It was using |
does it solve the problem? if so i'd like to close this issue |
It takes some time until I can give you a solid answer. This PR should be merged, and then it should be merged to Atom itself. |
We still hit the error atom/text-buffer#336 (comment) The error is thrown from node-minidump package. |
i see. seems there's nothing i can do for that... |
Shouldn't node-fswin generate a dummy .node file so it can be required from different operating systems?
Linux:
MacOS
The text was updated successfully, but these errors were encountered: