From 8abcd5d53bd8e229414d3dfe1e42f714eb0159d0 Mon Sep 17 00:00:00 2001 From: Zhaofeng Li Date: Thu, 18 Mar 2021 15:13:34 -0700 Subject: [PATCH] "Successfully built" -> "Build successful" for consistency --- README.md | 2 +- src/nix/deployment.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2af92f..ee8355c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It's a thin wrapper over Nix commands like `nix-instantiate` and `nix-copy-closu $ colmena apply --on @tag-a [INFO ] Enumerating nodes... [INFO ] Selected 7 out of 45 hosts. - (...) ✅ 0s Successfully built + (...) ✅ 0s Build successful sigma 🕗 7s copying path '/nix/store/h6qpk8rwm3dh3zsl1wlj1jharzf8aw9f-unit-haigha-agent.service' to 'ssh://root@sigma.redacted'... theta ✅ 7s Activation successful gamma 🕘 8s Starting... diff --git a/src/nix/deployment.rs b/src/nix/deployment.rs index 879cdc9..6ac29c2 100644 --- a/src/nix/deployment.rs +++ b/src/nix/deployment.rs @@ -467,7 +467,7 @@ impl Deployment { match derivation.realize(&mut *builder).await { Ok(profiles) => { - progress.success("Successfully built"); + progress.success("Build successful"); let mut results = self.results.lock().await; let stage = Stage::Build(chunk.clone());