From 9c57302692b20d1740b5db1938431dd5f4bb0506 Mon Sep 17 00:00:00 2001 From: swee <meow@swee.codes> Date: Mon, 20 Jan 2025 22:23:40 -0800 Subject: [PATCH] Update index.js --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 7af3316..d5107c9 100644 --- a/index.js +++ b/index.js @@ -1,10 +1,9 @@ const { exec } = require('node:child_process'); var additional = process.env.INPUT_ADDITIONAL; exec('apk add bash git ' + additional, (err, output) => { + console.log(output); if (err) { console.log("Something went wrong..."); - console.log(output); - process.exit(1); } else { console.log("Successfully installed packages!"); }