only warn if tag is not set

This commit is contained in:
Jiiks 2019-02-20 16:12:56 +02:00
parent e6c9bc447e
commit 124ec078aa
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ async function pack() {
];
fs.writeFile('./release/releaseinfo.json', JSON.stringify(releaseStub, null, 4), (err) => {
console.log(`all done! Don't forget to update :rel`);
console.log(`all done! ${tag === ':rel' ? `Don't forget to update :rel` : ''}`);
});
}