Skip to content

aoc-cli 0.5 #11

Closed
Closed
@tguichaoua

Description

@tguichaoua

aoc-cli release v0.5.0 4 days ago and rename the --file command flag by --input-file.

It can be solved by either :

  • install aoc-cli v0.4 with cargo install aoc-cli --version 0.4
  • patch src/bin/download.rs with
    cmd_args.append(&mut vec![
    "--file".into(),
    tmp_file_path.to_string_lossy().to_string(),
    "--day".into(),
    args.day.to_string(),
    "download".into(),
    ]);
    cmd_args.append(&mut vec![
-      "--file".into(),
+      "--input-file".into(),
        tmp_file_path.to_string_lossy().to_string(),
        "--day".into(),
        args.day.to_string(),
        "download".into(),
    ]);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions