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()}`;