From a184dfa4f35fe66dc9a3729fcbe0872bfbf9ba07 Mon Sep 17 00:00:00 2001 From: Jacob Hummer Date: Sat, 15 Jul 2023 23:33:56 -0500 Subject: [PATCH] remove third arg --- cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.ts b/cli.ts index 7555e6c..2e5f725 100755 --- a/cli.ts +++ b/cli.ts @@ -40,7 +40,7 @@ await $`git config user.name github-actions[bot]`; await $`git config user.email 41898282+github-actions[bot]@users.noreply.github.com`; await appendFile(resolve($.cwd!, ".git/info/exclude"), core.getInput("ignore")); -await copy(core.getInput("path"), $.cwd!, { recursive: true }); +await copy(core.getInput("path"), $.cwd!); function plugin() { function visitor(node: any) {