Skip to content

Commit 26b5f5e

Browse files
committed
Fix URL typo
1 parent d3da46d commit 26b5f5e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = {
2525
return context.deployTarget;
2626
},
2727

28-
url: '',
28+
url: ''
2929
},
3030

3131
requiredConfig: ['appName', 'orgName', 'authToken'],
@@ -77,21 +77,21 @@ module.exports = {
7777
return this._exec(
7878
[
7979
path.join('node_modules', '.bin', 'sentry-cli'),
80-
url ? `SENTRY_URL=${url}` : '',
80+
url ? `--url ${url}` : '',
8181
`--auth-token ${authToken}`,
8282
'releases',
8383
`--org ${orgName}`,
8484
`--project ${appName}`,
85-
params,
85+
params
8686
].join(' ')
8787
);
8888
},
8989

9090
_exec(command = '') {
9191
return execSync(command, { cwd: this.project.root });
92-
},
92+
}
9393
});
9494

9595
return new DeployPlugin();
96-
},
96+
}
9797
};

0 commit comments

Comments
 (0)