Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
lunarys committed Jun 23, 2024
2 parents 814f1b6 + 7fdb217 commit cabe261
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vbackup"
version = "2.8.3"
version = "2.8.4"
authors = ["Julian Ulrich <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions src/modules/shared/borg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ impl Borg {
* limit to proper prefix
*/
if let Some(prefix) = self.config.prefix.as_ref() {
command.arg_string(format!("--prefix=vbackup_{}_", prefix));
command.arg_string(format!("--glob-archives=vbackup_{}_*", prefix));
} else {
command.arg_str("--prefix=vbackup_");
command.arg_str("--glob-archives=vbackup_*");
}

/*
Expand Down

0 comments on commit cabe261

Please sign in to comment.