Skip to content

Commit

Permalink
fix(services.js): Change path typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Furkan Arabacı authored Apr 22, 2021
1 parent e406fd4 commit c5814fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export function uploadArtifact(options) {
const req = https.request(
{
host: 'api.appcircle.io',
path: `/distribution/v2/profiles/${options.id}/app-versions`,
path: `/distribution/v2/profiles/${options.profileId}/app-versions`,
method: 'POST',
headers: {
...form.getHeaders(),
Expand All @@ -222,4 +222,4 @@ export function uploadArtifact(options) {
);

form.pipe(req);
}
}

0 comments on commit c5814fb

Please sign in to comment.