From a606e123f890e03775cfd0d7dc908bb35dc95c96 Mon Sep 17 00:00:00 2001 From: notgne2 Date: Thu, 29 Oct 2020 11:03:22 -0700 Subject: Set correct author on activate binary --- src/activate.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/activate.rs') diff --git a/src/activate.rs b/src/activate.rs index 4fdb59c..8c1cfe4 100644 --- a/src/activate.rs +++ b/src/activate.rs @@ -30,7 +30,7 @@ mod utils; /// Activation portion of the simple Rust Nix deploy tool #[derive(Clap, Debug)] -#[clap(version = "1.0", author = "notgne2 ")] +#[clap(version = "1.0", author = "Serokell ")] struct Opts { profile_path: String, closure: String, @@ -257,7 +257,10 @@ pub async fn activate( let activate_status_all = match activate_status { Ok(s) if s.success() => Ok(()), - Ok(_) => Err(std::io::Error::new(std::io::ErrorKind::Other, "Activation did not succeed")), + Ok(_) => Err(std::io::Error::new( + std::io::ErrorKind::Other, + "Activation did not succeed", + )), Err(x) => Err(x), }; -- cgit v1.2.3