Skip to content

Commit

Permalink
chore: Change cli.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
redpeacock78 committed Nov 13, 2021
1 parent 1349a68 commit 49f0f94
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 @@ -35,7 +35,7 @@ try {
const { options, args } = await new Command()
.name("base85")
.description("Base85 (Ascii85 with Adobe Escape Sequence) encode or decode FILE, or standard input, to standard output.")
.version("0.0.10")
.version("v0.0.11")
.option("-d, --decode", "Decode data")
.arguments("<option>")
.parse(!isatty ? [...Deno.args, [...stdin!].join(",")] : !file! ? Deno.args : !args_judge! ? [[...file!].join(",")] : [Deno.args[0], [...file!].join(",")]);
Expand Down

0 comments on commit 49f0f94

Please sign in to comment.