From db541eae5248531f14e68476736bacf3c8722383 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Wed, 20 Mar 2024 14:19:15 +0100 Subject: [PATCH] output --- apps/remix-ide/ci/update_desktop_release_assets.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/ci/update_desktop_release_assets.ts b/apps/remix-ide/ci/update_desktop_release_assets.ts index 5fe3d674a4..14f5532588 100644 --- a/apps/remix-ide/ci/update_desktop_release_assets.ts +++ b/apps/remix-ide/ci/update_desktop_release_assets.ts @@ -175,6 +175,8 @@ async function main() { const mac = fs.readFileSync(path.join(__dirname, '../../../release', 'latest-mac.yml'), 'utf8') const parsedMacArm64 = YAML.parse(macArm64) const parsedMac = YAML.parse(mac) + console.log(parsedMacArm64) + console.log(parsedMac) const combined = { ...parsedMac, files: { @@ -184,9 +186,9 @@ async function main() { } console.log(combined) const newYml = YAML.stringify(combined) - fs.writeFileSync(path.join(__dirname, '../../../release', 'latest-mac.yml'), newYml) + //fs.writeFileSync(path.join(__dirname, '../../../release', 'latest-mac.yml'), newYml) // remove the arm64 file - fs.unlinkSync(path.join(__dirname, '../../../release', 'latest-mac-arm64.yml')) + // fs.unlinkSync(path.join(__dirname, '../../../release', 'latest-mac-arm64.yml')) } } catch (e) { console.log(e)