From f90d42fe96fdcc30ca68deef630826da6e6da8fd Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Fri, 13 Jan 2023 13:48:05 +0100 Subject: [PATCH] src/config_structure.rs: change the name of remote table in config file --- src/config_structure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config_structure.rs b/src/config_structure.rs index a806a54..c15ed2d 100644 --- a/src/config_structure.rs +++ b/src/config_structure.rs @@ -8,7 +8,7 @@ use toml::{self, Value}; pub struct Config { pub repository: Option<Repository>, pub gblk_prune: Option<GblkConfig>, - pub remote: Option<Vec<RemoteConfig>>, + pub gblk_remote: Option<Vec<RemoteConfig>>, } /// Structure that store the current borg configuration for the project -- GitLab