-
-
Notifications
You must be signed in to change notification settings - Fork 148
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
Incompatible with Electron v10.x.y+ when dealing with .asar #223
Open
htxuuu opened this issue
Dec 14, 2021
· 2 comments
· Fixed by electron/electron#34764 · May be fixed by #232
Open
Incompatible with Electron v10.x.y+ when dealing with .asar #223
htxuuu opened this issue
Dec 14, 2021
· 2 comments
· Fixed by electron/electron#34764 · May be fixed by #232
Comments
currently I use yarn and set:
in |
I have a similar issue. The |
This was referenced Jun 26, 2022
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when Electron dealing with directory with
.asar
, will directly accessoptions.withFileType
.See: https://github.com/electron/electron/blob/4594af595eab12e76034d0d0e94539ef390024bb/lib/common/asar.js#L597
and in graceful-fs v4.2.7 and above, will set
options
tonull
in some circumstances.For example:
node-graceful-fs/graceful-fs.js
Line 113 in 9ec3413
when
options
sets tonull
,options.withFileTypes
in Electron will cause error.I suppose it is a bug.
The text was updated successfully, but these errors were encountered: