Fix silly bug in add-new-language script
This commit is contained in:
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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user