Skip to content

Commit c45c9c8

Browse files
committed
platform testing
1 parent 972524e commit c45c9c8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6727,9 +6727,9 @@ async function downloadCLI(osPlatform){
67276727
// let tmpPath = await tc.extractXar(await tc.downloadTool(url));
67286728
let tmpPath = await tc.downloadTool(url);
67296729
core.info(`extracting mac pkg in ${tmpPath}...`);
6730-
const installPath = '/Users/runner/work/_temp/stackql';
6730+
const installPath = '/Users/runner/work/_temp/stackql-pkg';
67316731
execSync(`pkgutil --expand-full ${tmpPath} ${installPath}`);
6732-
return installPath;
6732+
return `${installPath}/Payload/stackql`;
67336733
case 'linux':
67346734
return await tc.extractZip(await tc.downloadTool(url));
67356735
default:

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ async function downloadCLI(osPlatform){
2525
// let tmpPath = await tc.extractXar(await tc.downloadTool(url));
2626
let tmpPath = await tc.downloadTool(url);
2727
core.info(`extracting mac pkg in ${tmpPath}...`);
28-
const installPath = '/Users/runner/work/_temp/stackql';
28+
const installPath = '/Users/runner/work/_temp/stackql-pkg';
2929
execSync(`pkgutil --expand-full ${tmpPath} ${installPath}`);
30-
return installPath;
30+
return `${installPath}/Payload/stackql`;
3131
case 'linux':
3232
return await tc.extractZip(await tc.downloadTool(url));
3333
default:

0 commit comments

Comments
 (0)