mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-17 08:52:37 +00:00
remove debug lines and add changelog
This commit is contained in:
parent
b5030288b9
commit
fd5f36a60a
3 changed files with 7 additions and 12 deletions
|
|
@ -34,7 +34,7 @@ async function checkTerraform () {
|
|||
const options = {
|
||||
listeners,
|
||||
ignoreReturnCode: true,
|
||||
silent: true, // work around github.com/actions/toolkit#649
|
||||
silent: true, // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
|
||||
};
|
||||
const exitCode = await exec(pathToCLI, args, options);
|
||||
|
||||
|
|
@ -42,11 +42,6 @@ async function checkTerraform () {
|
|||
process.stdout.write(stdout.contents);
|
||||
process.stderr.write(stderr.contents);
|
||||
|
||||
core.debug(`Terraform exited with code ${exitCode}.`);
|
||||
core.debug(`stdout: ${stdout.contents}`);
|
||||
core.debug(`stderr: ${stderr.contents}`);
|
||||
core.debug(`exitcode: ${exitCode}`);
|
||||
|
||||
// Set outputs, result, exitcode, and stderr
|
||||
core.setOutput('stdout', stdout.contents);
|
||||
core.setOutput('stderr', stderr.contents);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue