Skip to content

Commit

Permalink
fix: set --index-url to be a global arg
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejager committed Feb 13, 2024
1 parent 160ed59 commit ad347e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rip_bin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct Cli {

/// Base URL of the Python Package Index (default <https://pypi.org/simple>). This should point
/// to a repository compliant with PEP 503 (the simple repository API).
#[clap(default_value = "https://pypi.org/simple/", long)]
#[clap(default_value = "https://pypi.org/simple/", long, global = true)]
index_url: Url,
}

Expand Down

0 comments on commit ad347e9

Please sign in to comment.