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
electron-packager is a cli helper that packages an electron app. It does so by copying a node app (including node_modules) to the temp directory. This step uses fs.copy (from node-fs-extra) which silently fails.
In particular, apparently, at some point it simply stops without throwing an error, nor calling the callback:
In node-fs-extra, I traced the issue back to this project, because I am 85% confident that the issue arises from calls like these do not result in a callback or quit unexpectedly.
I'd be glad to help you identify root cause of this issue. Note that this only happens on windows. On OSX, everything works fine.
The text was updated successfully, but these errors were encountered:
aeneasr
changed the title
node-graceful silently fails on windows
node-graceful-fs silently fails on windows
Feb 19, 2017
This is an upstream issue of an upstream issue (node-fs-extra) of this original comment in electron-packager. That escalated quickly (see what I did there?) :D
electron-packager is a cli helper that packages an electron app. It does so by copying a node app (including node_modules) to the temp directory. This step uses
fs.copy
(from node-fs-extra) which silently fails.In particular, apparently, at some point it simply stops without throwing an error, nor calling the callback:
In node-fs-extra, I traced the issue back to this project, because I am 85% confident that the issue arises from calls like these do not result in a callback or quit unexpectedly.
I'd be glad to help you identify root cause of this issue. Note that this only happens on windows. On OSX, everything works fine.
The text was updated successfully, but these errors were encountered: