Skip to content

Commit

Permalink
fix panic: not enough args in extract [#52]
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon committed May 8, 2023
1 parent d335f16 commit 26fc088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func main() {

logger.Printf("Serving %s %s on port %d with Access-Control-Allow-Origin: %s\n", cli.Serve.Bucket, cli.Serve.Path, cli.Serve.Port, cli.Serve.Cors)
logger.Fatal(http.ListenAndServe(":"+strconv.Itoa(cli.Serve.Port), nil))
case "extract <input>":
case "extract <input> <output>":
logger.Fatalf("This command is not yet implemented.")
case "convert <input> <output>":
path := cli.Convert.Input
Expand Down

0 comments on commit 26fc088

Please sign in to comment.