Skip to content

Commit

Permalink
fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matmar10 committed Apr 4, 2022
1 parent 6fe9e99 commit 2a2eea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ async function run() {
if (!build) {
core.error(`Could not find build matching version ${version}.`);
core.setFailed(`No existing build for app ID ${appId} matches version ${version}`);
return;
throw new Error(`Unexpected build status: "${status}" yet no matching build found`);
}
core.info(`Found build matching version ${version} OK: ${JSON.stringify(build)}`);

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async function run() {
if (!build) {
core.error(`Could not find build matching version ${version}.`);
core.setFailed(`No existing build for app ID ${appId} matches version ${version}`);
return;
throw new Error(`Unexpected build status: "${status}" yet no matching build found`);
}
core.info(`Found build matching version ${version} OK: ${JSON.stringify(build)}`);

Expand Down

0 comments on commit 2a2eea5

Please sign in to comment.