mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-20 03:49:54 +00:00
Check error case for skip existing (#8631)
This commit is contained in:
parent
082259493e
commit
f5a7d70642
2 changed files with 117 additions and 45 deletions
|
|
@ -59,7 +59,10 @@ pub enum PublishError {
|
|||
MixedCredentials(String),
|
||||
#[error("Failed to query check URL")]
|
||||
CheckUrlIndex(#[source] uv_client::Error),
|
||||
#[error("Local file and index file for {filename} do not match. Local: {hash_algorithm}={local}, Remote: {hash_algorithm}={remote}")]
|
||||
#[error(
|
||||
"Local file and index file do not match for {filename}. \
|
||||
Local: {hash_algorithm}={local}, Remote: {hash_algorithm}={remote}"
|
||||
)]
|
||||
HashMismatch {
|
||||
filename: Box<DistFilename>,
|
||||
hash_algorithm: HashAlgorithm,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue