I am using mac and I cloned the electron-quick-start repo.
If I do electron-packager . --all I get this error:
Could not find "wine64" on your system.
Wine is required to use the appCopyright, appVersion, buildVersion, icon, and
win32metadata parameters for Windows targets.
Make sure that the "wine64" executable is in your PATH.
I am not sure what this means, I installed Wine using: https://wiki.winehq.org/MacOS
brew cask install wine-stable
All I want is to be able to generate a portable exe file to open the app on Windows machines
馃憢 Thanks for opening your first issue here! If you have a question about using Electron Packager, read the support docs. If you're reporting a 馃悶 bug, please make sure you include steps to reproduce it. Development and issue triage is community-driven, so please be patient and we will get back to you as soon as we can.
To help make it easier for us to investigate your issue, please follow the contributing guidelines.
What version of macOS do you have installed?
Mac 10.14.6
What do you get when you run the following commands:
```
which wine
which wine64
which wineserver
ls "/Applications/Wine Stable.app/Contents/Resources/wine/bin"
I fixed the issue by installed wine-devel
brew install homebrew/cask-versions/wine-devel
Most helpful comment
I fixed the issue by installed wine-devel
brew install homebrew/cask-versions/wine-devel