remove cruft that literally generated junk files

This commit is contained in:
Sean Meininger 2022-10-10 16:03:28 -07:00
parent 150c1560f6
commit 9cd854c961

View file

@ -14,6 +14,4 @@ export const ensureFileExists = async (filename: string) => {
export const appendHeredocToFile = async (filename:string, textToAppend:string) => {
fs.promises.appendFile(filename, textToAppend);
};
appendHeredocToFile('ok', generateHereDoc('arg'));
};