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
I read the source code of winPacker.ts and get some useful infomation:
set the "signDlls": true
_fsExtraP().readdir can not read recursively
I try some code to replace the _fsExtraP().readdir to make it could recursively read the directory and it works, but I don't know and I'm not sure how to make the recursive readdir a good one to contribute into the source code, so I open this issue @develar
electron-builder: 20.43.0
electron-updater: 4.0.6
target: Windows 10
This is the a related issue of #3995
I read the source code of winPacker.ts and get some useful infomation:
I try some code to replace the _fsExtraP().readdir to make it could recursively read the directory and it works, but I don't know and I'm not sure how to make the recursive readdir a good one to contribute into the source code, so I open this issue @develar
`
const { promisify } = require('util');
const { resolve } = require('path');
const fs = require('fs');
const readdir = promisify(fs.readdir);
const stat = promisify(fs.stat);
`
In my project there are several binaries in the resources/app.asar.unpacked/xxx/yyy/zzz/*.dll
So it should support readdir recursively to get the unpacked binaries to be signed, and I read this develar@66ee8ab
The text was updated successfully, but these errors were encountered: