Skip to content

Commit 444d28a

Browse files
authored
Merge pull request #8 from geekcell/fix-output-var
Fix output variable starting with 'null'
2 parents 8c258b4 + 900f39c commit 444d28a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50041,7 +50041,7 @@ const main = async () => {
5004150041

5004250042
// Get logging configuration
5004350043
let logFilterStream = null;
50044-
let logOutput = null;
50044+
let logOutput = '';
5004550045

5004650046
if (tailLogs) {
5004750047
core.debug(`Logging enabled. Getting logConfiguration from TaskDefinition.`)

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const main = async () => {
6767

6868
// Get logging configuration
6969
let logFilterStream = null;
70-
let logOutput = null;
70+
let logOutput = '';
7171

7272
if (tailLogs) {
7373
core.debug(`Logging enabled. Getting logConfiguration from TaskDefinition.`)

0 commit comments

Comments
 (0)