From e24995197ae3b9d274bc8cb44292f1cd86a4b7f0 Mon Sep 17 00:00:00 2001 From: xHyroM Date: Tue, 12 Jul 2022 09:31:35 +0200 Subject: [PATCH] chore: debug --- bun.lockb | Bin 18665 -> 18665 bytes dist/utils/install.js | 2 ++ src/utils/install.ts | 2 ++ 3 files changed, 4 insertions(+) diff --git a/bun.lockb b/bun.lockb index acb25028b6ef54485fd17b8a3913ca512580e205..eee8bf478e4dd8f26f6e8e7d042c470581201ac1 100755 GIT binary patch delta 2150 zcmc(fJ4*vW5XbkD+sj=Z#zaIAEyP9;F~T*1f_{J$_KFIout?#%5Lvai2wPiNX(L2Z z2mAsST5Dlp;RmpcI&(Ms2q=nrc#v>6J2Su8|IF@l!+CBv%_DcFaSZ|4evZ_BCjt4va?I@nS{W=4)fvF@6h9|Ro-W3bjev*`S)JcC!c@&JQgSszzOXl2 zf*dex_47It$4rWxw#iIh`FbS+s*KomZ1kuR^`M}6Y8-sCYPFPM^AxWOQAS>@&`po7 zud5_SK4vRwZms zB|X*H)eP*Frn*%vhl7F+RFn+<=6cvR>%?b-P59f_0LmjQA)ELLk^=C~&iWb_cn7~M zV~1$ls?~REn~dFqtq3+O@CP>Wo8Ui)6+f!_55U9~zn3s7#%@ywj$46RqFVQvO?=le zAwQvq>$3_I0uvWb`~QH63;gKleATCR+?21=5l;H3ruLn^? z9#`mLK-Je%lEvPGvfLZ2!Zr4$ng2crcdI9eVvrv%8!Tta6o8@tyav!!_KO>em(kHq zLBWWQc`K-`#;K;ESFzQtN--Q^FHSLPlQsTToREq5^O?f*e`bS@O|T8%!^7<=w)YIb z0NiLhsO=op_6d0fTOLD_vH?HYgul!eCDzF=!Gat0C9656E_`4)F%mhtpW8tH{(}>U yjf{o+dDRJk1sC^^{0CTYqyLqEZA*XeNvPm}tk@a;-I@7XyR#+FdTiC_*7IK?vOvrL 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}.`);