aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authornotgne22020-11-02 15:07:24 -0700
committernotgne22020-11-02 15:07:24 -0700
commit53f4e752442718caf7786aba7e934118488d89b4 (patch)
tree206e151f5196e6f61f07964c169b82139816ad9a /src/main.rs
parent3afb61665d57fe14a4045bd8678690c82256f9f3 (diff)
Mildly improve logging
Diffstat (limited to '')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 78bc933..91adae3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -478,7 +478,7 @@ enum RunError {
CheckDeploymentError(#[from] CheckDeploymentError),
#[error("Failed to evaluate deployment data: {0}")]
GetDeploymentDataError(#[from] GetDeploymentDataError),
- #[error("Error running deploy: {0}")]
+ #[error("{0}")]
RunDeployError(#[from] RunDeployError),
}