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 @@ -13,10 +13,10 @@ async function buildWin() {
13
13
const OUTPUT_PATH = join ( OUTPUT_DIR , WIN_OUTPUT_NAME )
14
14
15
15
try {
16
- console . log ( `📦 Creating standalone executable for Windows...` )
16
+ console . log ( `📦 Creating standalone executable for Windows...` , OUTPUT_PATH )
17
17
18
18
execSync (
19
- `node -e "require('fs').copyFileSync(process.execPath, ${ OUTPUT_PATH } )" ` ,
19
+ `node -e "require('fs').copyFileSync(process.execPath, ' ${ OUTPUT_PATH } ' )" ` ,
20
20
)
21
21
22
22
execSync ( `signtool remove /s ${ OUTPUT_PATH } ` )
@@ -40,7 +40,7 @@ async function buildMac() {
40
40
const OUTPUT_PATH = join ( OUTPUT_DIR , MAC_OUTPUT_NAME )
41
41
42
42
try {
43
- console . log ( `📦 Creating standalone executable for macOS...` )
43
+ console . log ( `📦 Creating standalone executable for macOS...` , OUTPUT_PATH )
44
44
45
45
execSync ( `cp ${ NODE_PATH } ${ OUTPUT_PATH } ` )
46
46
You can’t perform that action at this time.
0 commit comments