From 70b787b58e85ada364f1108d103f0dcc5e3d3939 Mon Sep 17 00:00:00 2001 From: Gabriel Simonetto Date: Wed, 27 Oct 2021 00:08:26 -0300 Subject: [PATCH] Fix repo link on documentation --- Cargo.toml | 2 +- src/error.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c42ac8b..45282d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["Vinícius Rodrigues Miguel ", "João M. Bezerra "] edition = "2018" readme = "README.md" -repository = "https://github.com/vrmiguel/ouch" +repository = "https://github.com/ouch-org/ouch" license = "MIT" keywords = ["decompression", "compression", "zip", "tar", "gzip"] categories = ["command-line-utilities", "compression", "encoding"] diff --git a/src/error.rs b/src/error.rs index 114f580..63ea6d7 100644 --- a/src/error.rs +++ b/src/error.rs @@ -90,7 +90,7 @@ impl fmt::Display for Error { FinalError::with_title(format!("Cannot compress to {:?}", filename)) .detail("Ouch could not detect the compression format") .hint("Use a supported format extension, like '.zip' or '.tar.gz'") - .hint("Check https://github.com/vrmiguel/ouch for a full list of supported formats") + .hint("Check https://github.com/ouch-org/ouch for a full list of supported formats") } Error::WalkdirError { reason } => FinalError::with_title(reason), Error::FileNotFound(file) => { @@ -127,7 +127,7 @@ impl fmt::Display for Error { .detail("This should not have happened") .detail("It's probably our fault") .detail("Please help us improve by reporting the issue at:") - .detail(format!(" {}https://github.com/vrmiguel/ouch/issues ", *CYAN)) + .detail(format!(" {}https://github.com/ouch-org/ouch/issues ", *CYAN)) } Error::IoError { reason } => FinalError::with_title(reason), Error::CompressionTypo => {