diff --git a/bun.lockb b/bun.lockb index acb2502..eee8bf4 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/dist/utils/install.js b/dist/utils/install.js index 0d2704a..a495990 100644 --- a/dist/utils/install.js +++ b/dist/utils/install.js @@ -4,6 +4,7 @@ import { addPath, info } from '@actions/core'; import getAsset from './getAsset.js'; import getHomeDir from './getHomeDir.js'; import { join } from 'path'; +import { homedir } from 'os'; export default async (release) => { const asset = getAsset(release.assets); const path = join(getHomeDir(), '.bun', 'bin', asset.name); @@ -13,6 +14,7 @@ export default async (release) => { addPath(path); return; } + console.log(getHomeDir(), homedir()); info(`Downloading Bun from ${asset.asset.browser_download_url}.`); const zipPath = await downloadTool(asset.asset.browser_download_url); const extracted = await extractZip(zipPath, join(getHomeDir(), '.bun', 'bin')); diff --git a/src/utils/install.ts b/src/utils/install.ts index eb0f4e2..f451d9b 100644 --- a/src/utils/install.ts +++ b/src/utils/install.ts @@ -5,6 +5,7 @@ import { addPath, info } from '@actions/core'; import getAsset from './getAsset.js'; import getHomeDir from './getHomeDir.js'; import { join } from 'path'; +import { homedir } from 'os'; export default async(release: Release) => { const asset = getAsset(release.assets); @@ -15,6 +16,7 @@ export default async(release: Release) => { addPath(path); return; } + console.log(getHomeDir(), homedir()); info(`Downloading Bun from ${asset.asset.browser_download_url}.`);