aboutsummaryrefslogtreecommitdiff
path: root/src/activate.rs
diff options
context:
space:
mode:
authornotgne22020-10-29 11:03:22 -0700
committernotgne22020-10-29 11:03:22 -0700
commita606e123f890e03775cfd0d7dc908bb35dc95c96 (patch)
tree6f30501951f13015de0ee50b427b9dccd46b9d68 /src/activate.rs
parent0446a2f4319def3a58f8c78912decb9e6545c727 (diff)
Set correct author on activate binary
Diffstat (limited to '')
-rw-r--r--src/activate.rs7
1 files changed, 5 insertions, 2 deletions
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 <gen2@gen2.space>")]
+#[clap(version = "1.0", author = "Serokell <https://serokell.io/>")]
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),
};