Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for new links added to the release object (release links) #5405

Merged
Prev Previous commit
Next Next commit
Update appdistribution-distribute.ts
manny-jimenez committed Jan 8, 2023
commit 8359df94335456c2f8c7aa0a116f3fb6b7306a7f
4 changes: 3 additions & 1 deletion src/commands/appdistribution-distribute.ts
Original file line number Diff line number Diff line change
@@ -131,7 +131,9 @@ export const command = new Command("appdistribution:distribute <release-binary-f
}
utils.logSuccess(`View this release in the Firebase console: ${release.firebaseConsoleUri}`);
utils.logSuccess(`Share this release with testers: ${release.testingUri}`);
utils.logSuccess(`Download the release binary (link expires in 1 hour): ${release.binaryDownloadUri}`);
utils.logSuccess(
`Download the release binary (link expires in 1 hour): ${release.binaryDownloadUri}`
);
releaseName = uploadResponse.release.name;
} catch (err: any) {
if (err.status === 404) {