1
0

Fix silly bug in add-new-language script

This commit is contained in:
Nilay Majorwar 2022-02-13 19:43:40 +05:30
parent 10221b0767
commit 7c6a17978a

@ -43,7 +43,7 @@ const cropFirstLine = (contents) => {
const copyFile = (src, dest) => {
const rawContents = fs.readFileSync(src).toString();
const destContents = cropFirstLine(rawContents);
if (destContents) {
if (!destContents) {
console.error(`Template file '${src}' doesn't have @ts-nocheck comment`);
process.exit(1);
}