Remove log

This commit is contained in:
Dominik Prokop 2019-03-05 21:16:34 +01:00
parent 18999df716
commit b816b4e259

View File

@ -86,7 +86,6 @@ const publishPackage = (name: string, version: string) =>
const ensureMasterBranch = async () => {
const currentBranch = await execa.stdout('git', ['symbolic-ref', '--short', 'HEAD']);
const status = await execa.stdout('git', ['status', '--porcelain']);
console.log(status === '');
if (currentBranch !== 'master' && status !== '') {
console.error(chalk.red.bold('You need to be on clean master branch to release @grafana/ui'));