From 8413dfa279697e75a75823263c9554c282cb41a4 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Sun, 5 Jan 2025 10:33:26 +0100 Subject: [PATCH] fix --- src/borg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg.rs b/src/borg.rs index 20634e7..2556271 100644 --- a/src/borg.rs +++ b/src/borg.rs @@ -33,7 +33,7 @@ pub fn create_archive(conf: &BorgConfig) { format!("{}::{archive_name}", conf.repo).paint(Color::Yellow), ); - let mut cmd = vec!["borg", "create", "--stats", "--list"]; + let mut cmd = vec!["borg", "create", "--stats", "--list", "--progress"]; let empty = Vec::new(); for ex in conf.exclude.as_ref().unwrap_or(&empty) {