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
logger.warn('You are on macOS - Wine will be used to run Windows executables!');
52
+
53
+
constwinePath=awaitthis.findWine();
54
+
if(!winePath){
55
+
thrownewError('Wine is not installed. Please install Wine to run Windows executables on macOS.\nInstall via Homebrew: brew install --cask wine-stable');
56
+
}
57
+
58
+
logger.debug(`Found Wine at: ${winePath}`);
59
+
wineCommand=`${winePath} `;
60
+
}
16
61
17
-
// avoid the workaround if the parent process in not pkg-ed version.
62
+
// avoid the workaround if the parent process is not pkg-ed version.
18
63
if(process.pkg){
19
64
// creating a temporary folder for our executable file
0 commit comments