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

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