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

Tools: trim

This commit is contained in:
Laurent Cozic 2020-11-26 12:13:26 +00:00
parent b279a9693c
commit d8745597e9

View File

@ -50,7 +50,7 @@ async function insertChangelog(tag, changelog) {
async function main() {
process.chdir(appDir);
const newVersion = await execCommand('npm version patch');
const newVersion = (await execCommand('npm version patch')).trim();
console.info(`Building ${newVersion}...`);
const newTag = `cli-${newVersion}`;