Skip to content

Commit

Permalink
Fix bad conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
ecooper committed Dec 16, 2024
1 parent 66d5de9 commit b613fc7
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,6 @@ function buildYargs(argvInput) {
.completion(
"completion",
"Output bash/zsh script to enable shell completions. See command output for installation instructions.",
)
.completion(
"completion",
async function (currentWord, argv, defaultCompletions, done) {
// this is pretty hard to debug - if you need to, run
// `fauna --get-yargs-completions <command> <flag> <string to match>`
Expand Down Expand Up @@ -229,8 +226,5 @@ function buildYargs(argvInput) {
encoding: "utf8",
}),
).version,
)
.completion(
"completion",
"Output bash/zsh script to enable shell completions. See command output for installation instructions.",
);
);
}

0 comments on commit b613fc7

Please sign in to comment.