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 would expect getConfig to always call loadConfig but it doesn't when called from installAppDeps (since null is explicitly passed in). @develar I see you on the blame line so maybe you could shed some light on why it skips if packageMetadata == null?
This works as expected on 19.4.2.
The text was updated successfully, but these errors were encountered:
The latest
electron-builder install-app-deps
ignores an override inbuild.directories.app
, ie it always usesapp
for the directory.I think this is because of these two lines:
https://github.com/electron-userland/electron-builder/blob/v19.6.3/packages/electron-builder/src/cli/install-app-deps.ts#L42
and
https://github.com/electron-userland/electron-builder/blob/v19.6.3/packages/electron-builder/src/util/config.ts#L59
I would expect
getConfig
to always callloadConfig
but it doesn't when called frominstallAppDeps
(since null is explicitly passed in). @develar I see you on the blame line so maybe you could shed some light on why it skips ifpackageMetadata == null
?This works as expected on 19.4.2.
The text was updated successfully, but these errors were encountered: