Skip to content

Commit a4dab76

Browse files
fix: echo the correct link
1 parent a629b2c commit a4dab76

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

main.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ const SimpleReporter = class {
88
}
99

1010
log(logObj) {
11-
this.stream.write(`${logObj}\n`)
11+
this.stream.write(`${logObj.args[0]}\n`)
1212
}
1313
}
1414

15-
consola.setReporters([
16-
new SimpleReporter()
17-
])
15+
consola.setReporters(new SimpleReporter())
1816
const octokit = new Octokit()
1917

2018
const [owner, repo] = process.env.TRAVIS_REPO_SLUG.split('/')

0 commit comments

Comments
 (0)