Skip to content

Commit 632a12b

Browse files
committed
fix linting issue
1 parent ac0d611 commit 632a12b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build-reporter-plugin.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ class BugsnagBuildReporterPlugin {
6262
const optionalOpts = {
6363
autoAssignRelease: opts.build.autoAssignRelease,
6464
builderName: opts.build.builderName,
65-
metadata: opts.build.metadata ? Object.entries(opts.build.metadata)
66-
.map(([key, value]) => `${key}=${value}`)
67-
.join(',') : undefined,
65+
metadata: opts.build.metadata
66+
? Object.entries(opts.build.metadata)
67+
.map(([key, value]) => `${key}=${value}`)
68+
.join(',')
69+
: undefined,
6870
provider: opts.build.sourceControl.provider,
6971
repository: opts.build.sourceControl.repository,
7072
revision: opts.build.sourceControl.revision,

0 commit comments

Comments
 (0)