Skip to content

Commit

Permalink
remove third arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr committed Jul 16, 2023
1 parent e31e31e commit a184dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit a184dfa

Please sign in to comment.