1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Tools: Do not display full release info when releasing Android app

This commit is contained in:
Laurent Cozic 2019-07-28 22:43:33 +02:00
parent 5fa84b0dfb
commit 058f418cc7

View File

@ -190,10 +190,11 @@ async function main() {
});
const uploadResponseText = await uploadResponse.text();
console.info(uploadResponseText);
const uploadResponseObject = JSON.parse(uploadResponseText);
if (!uploadResponseObject || !uploadResponseObject.browser_download_url) throw new Error('Could not upload file to GitHub');
}
console.info('Download URL: ' + releaseFiles['main'].downloadUrl);
console.info('Main download URL: ' + releaseFiles['main'].downloadUrl);
}
main().catch((error) => {