File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6724,7 +6724,8 @@ async function downloadCLI(osPlatform){
67246724 case 'win32' :
67256725 return await tc . extractZip ( await tc . downloadTool ( url ) ) ;
67266726 case 'darwin' :
6727- let tmpPath = await tc . extractXar ( await tc . downloadTool ( url ) ) ;
6727+ // let tmpPath = await tc.extractXar(await tc.downloadTool(url));
6728+ let tmpPath = await tc . downloadTool ( url ) ;
67286729 core . info ( `extracting mac pkg in ${ tmpPath } ...` ) ;
67296730 const installPath = '/Users/runner/work/_temp/stackql' ;
67306731 execSync ( `pkgutil --expand-full ${ tmpPath } ${ installPath } ` ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ async function downloadCLI(osPlatform){
2222 case 'win32' :
2323 return await tc . extractZip ( await tc . downloadTool ( url ) ) ;
2424 case 'darwin' :
25- let tmpPath = await tc . extractXar ( await tc . downloadTool ( url ) ) ;
25+ // let tmpPath = await tc.extractXar(await tc.downloadTool(url));
26+ let tmpPath = await tc . downloadTool ( url ) ;
2627 core . info ( `extracting mac pkg in ${ tmpPath } ...` ) ;
2728 const installPath = '/Users/runner/work/_temp/stackql' ;
2829 execSync ( `pkgutil --expand-full ${ tmpPath } ${ installPath } ` ) ;
You can’t perform that action at this time.
0 commit comments