summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-03-03 11:05:41 +0200
committerLars Wirzenius <liw@liw.fi>2021-03-03 11:05:41 +0200
commit33b515d9533e7ba9902d74ab6ebd561e9556da9d (patch)
tree9fd1ea3cc33a13da339b676982e06afc5da77b81
parente80d78e7f0812ef5eb4cc2b4e93e1c241e0f4541 (diff)
downloadobnam2-33b515d9533e7ba9902d74ab6ebd561e9556da9d.tar.gz
fix: remove duplicate error message printing
-rw-r--r--src/bin/obnam.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/obnam.rs b/src/bin/obnam.rs
index dd1b26a..1c1c90e 100644
--- a/src/bin/obnam.rs
+++ b/src/bin/obnam.rs
@@ -28,7 +28,6 @@ fn main() -> anyhow::Result<()> {
if let Err(ref e) = result {
error!("command failed: {}", e);
- eprintln!("ERROR: {}", e);
result?
}