This commit is contained in:
Timo Hocker 2020-05-13 09:11:00 +02:00
parent f180ec72e8
commit 66e1f209a4
2 changed files with 8 additions and 0 deletions

View File

@ -48,4 +48,8 @@ if (fs.existsSync ('README.md')) {
} }
else { child_process.execSync ('yarn publish --access public'); } else { child_process.execSync ('yarn publish --access public'); }
} }
else {
console.log ('readme does not exist');
process.exit (1);
}
`; `;

View File

@ -39,3 +39,7 @@ if (fs.existsSync ('README.md')) {
} }
else { child_process.execSync ('yarn publish --access public'); } else { child_process.execSync ('yarn publish --access public'); }
} }
else {
console.log ('readme does not exist');
process.exit (1);
}