Skip to content

Commit cd4b3d3

Browse files
committed
Add shell option to spawnSync in upload script
The spawnSync call in script/upload.js now includes the shell: true option. This change may be required for proper command execution, especially on certain platforms or when using shell features.
1 parent 7571d07 commit cd4b3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/upload.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ spawnSync(
1010
(process.platform === 'win32' ? '.cmd' : '')
1111
),
1212
['--upload-all', process.env.GITHUB_AUTH_TOKEN],
13-
{ stdio: 'inherit' }
13+
{ stdio: 'inherit', shell: true }
1414
)

0 commit comments

Comments
 (0)