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
[ x ] I agree to follow the code of conduct that this project follows, as appropriate.
[ x ] I have searched the issue tracker for an issue that matches the one I want to file, without success.
Please describe your issue:
Adding --asar=false to the command line gives the warning WARNING: asar parameter set to an invalid value (false), ignoring and disabling asar
I realise that false is the default value but sometimes it aids clarity to set parameters explicitly.
The text was updated successfully, but these errors were encountered:
malept
added
the
question ❓
Question about using Electron Packager. Not supported in this issue tracker.
label
Aug 10, 2017
Due to how minimist works (the command line argument parser we use), you need to specify --no-asar instead of --asar=false (which makes it think the value of the argument is the string "false").
[...] sometimes it aids clarity to set parameters explicitly.
I would suggest instead of using the CLI, instead use the JavaScript API and enumerate all of the Packager options in a build.js file. Otherwise, you're going to hit "command too long" problems.
Please describe your issue:
Adding --asar=false to the command line gives the warning
WARNING: asar parameter set to an invalid value (false), ignoring and disabling asar
I realise that false is the default value but sometimes it aids clarity to set parameters explicitly.
The text was updated successfully, but these errors were encountered: