We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3da46d commit 26b5f5eCopy full SHA for 26b5f5e
index.js
@@ -25,7 +25,7 @@ module.exports = {
25
return context.deployTarget;
26
},
27
28
- url: '',
+ url: ''
29
30
31
requiredConfig: ['appName', 'orgName', 'authToken'],
@@ -77,21 +77,21 @@ module.exports = {
77
return this._exec(
78
[
79
path.join('node_modules', '.bin', 'sentry-cli'),
80
- url ? `SENTRY_URL=${url}` : '',
+ url ? `--url ${url}` : '',
81
`--auth-token ${authToken}`,
82
'releases',
83
`--org ${orgName}`,
84
`--project ${appName}`,
85
- params,
+ params
86
].join(' ')
87
);
88
89
90
_exec(command = '') {
91
return execSync(command, { cwd: this.project.root });
92
- },
+ }
93
});
94
95
return new DeployPlugin();
96
97
};
0 commit comments