From 595a90e0072ae3a0c8bdef08b0155efd78debee0 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sat, 3 Feb 2024 19:26:11 -0500 Subject: [PATCH] Debugging! --- src/extract.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/extract.js b/src/extract.js index aa9e6c8..2736303 100644 --- a/src/extract.js +++ b/src/extract.js @@ -4,6 +4,8 @@ const exec = require('@actions/exec'); async function run() { try { const shell = core.getInput('shell_command') || "/bin/bash -c"; + console.log(shell); + console.log(core.getInput('shell_command')); const image = core.getInput('image'); const path = core.getInput('path'); const destination = core.getInput('destination') || `.extracted-${Date.now()}`;