File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,12 +86,12 @@ module.exports = {
86
86
87
87
switch ( type ) {
88
88
case 'Windows_NT' :
89
- binaryPath = `./release/win-unpacked/Remix-Desktop- ${ channel } .exe` ;
89
+ binaryPath = `./release/win-unpacked/Remix-Desktop${ channel ? '-' + channel : '' } .exe` ;
90
90
break ;
91
91
case 'Darwin' :
92
92
binaryPath = arch === 'x64' ?
93
- `release/mac/Remix-Desktop- ${ channel } .app/Contents/MacOS/Remix-Desktop- ${ channel } ` :
94
- `release/mac-arm64/Remix-Desktop- ${ channel } .app/Contents/MacOS/Remix-Desktop- ${ channel } ` ;
93
+ `release/mac/Remix-Desktop${ channel ? '-' + channel : '' } .app/Contents/MacOS/Remix-Desktop${ channel ? '-' + channel : '' } ` :
94
+ `release/mac-arm64/Remix-Desktop${ channel ? '-' + channel : '' } .app/Contents/MacOS/Remix-Desktop${ channel ? '-' + channel : '' } ` ;
95
95
break ;
96
96
case 'Linux' :
97
97
binaryPath = "release/linux-unpacked/remixdesktop" ;
You can’t perform that action at this time.
0 commit comments