Skip to content

Commit c4f8c09

Browse files
committed
fix: 🐛 ensure path provided to options is used during createBuild command
1 parent 8445cfa commit c4f8c09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-reporter-plugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ class BugsnagBuildReporterPlugin {
5454
getBuildOpts (opts) {
5555
// Required options
5656
const buildOpts = {
57-
apiKey: opts.build.apiKey,
58-
versionName: opts.build.appVersion
57+
apiKey: opts.build.apiKey
5958
}
6059

6160
// Optional options
6261
const optionalOpts = {
62+
versionName: opts.build.appVersion,
6363
autoAssignRelease: opts.build.autoAssignRelease,
6464
builderName: opts.build.builderName,
6565
metadata: opts.build.metadata,

0 commit comments

Comments
 (0)