Skip to content

Commit 9d10f3f

Browse files
removing some console.lg
1 parent ebe835d commit 9d10f3f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

wrapper/dist/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4201,13 +4201,12 @@ async function checkStackQL () {
42014201
const exitCode = await exec(pathToCLI, args, options);
42024202
core.debug(`StackQL exited with code ${exitCode}.`);
42034203
core.debug(`stdout: ${stdout.contents}`);
4204-
console.log(`stderr: ${stderr.contents}`);
4204+
core.debug(`stderr: ${stderr.contents}`);
42054205
core.debug(`exitcode: ${exitCode}`);
42064206

42074207
// Set outputs, result, exitcode, and stderr
42084208
core.setOutput('stdout', stdout.contents);
42094209
core.setOutput('stderr', stderr.contents);
4210-
core.setOutput('exitcode', exitCode.toString(10));
42114210

42124211
if ((exitCode === 0 || exitCode === 2) && !stderr.contents) {
42134212
// A exitCode of 0 is considered a success
@@ -4218,7 +4217,7 @@ async function checkStackQL () {
42184217
}
42194218

42204219
// A non-zero exitCode is considered an error
4221-
core.setFailed(`StackQL exited with error ${stderr.contents}.`);
4220+
core.setFailed(`StackQL exited with error: ${stderr.contents}.`);
42224221
})();
42234222

42244223
})();

0 commit comments

Comments
 (0)