From 9cd854c961034373984e89237153a1faca538fbc Mon Sep 17 00:00:00 2001 From: Sean Meininger Date: Mon, 10 Oct 2022 16:03:28 -0700 Subject: [PATCH] remove cruft that literally generated junk files --- src/lib/fileOperations.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/fileOperations.ts b/src/lib/fileOperations.ts index 0c48d76..3f11cf3 100644 --- a/src/lib/fileOperations.ts +++ b/src/lib/fileOperations.ts @@ -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')); \ No newline at end of file +}; \ No newline at end of file