Skip to content

Commit

Permalink
Fix casing of --no-compile alias (#4453)
Browse files Browse the repository at this point in the history
## Summary

Closes #4452.
  • Loading branch information
charliermarsh authored Jun 23, 2024
1 parent d4f2a8a commit 757ea61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/uv/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2029,7 +2029,7 @@ pub(crate) struct InstallerArgs {

#[arg(
long,
alias = "no_compile",
alias = "no-compile",
overrides_with("compile_bytecode"),
hide = true
)]
Expand Down Expand Up @@ -2210,7 +2210,7 @@ pub(crate) struct ResolverInstallerArgs {

#[arg(
long,
alias = "no_compile",
alias = "no-compile",
overrides_with("compile_bytecode"),
hide = true
)]
Expand Down

0 comments on commit 757ea61

Please sign in to comment.