settings: blacklist isn't required
This commit is contained in:
parent
6a79949e28
commit
e68fcf3e52
|
@ -12,6 +12,6 @@ pub(crate) struct GlobalSettings {
|
||||||
pub additional_remotes: Vec<RepoUrl>,
|
pub additional_remotes: Vec<RepoUrl>,
|
||||||
/// List of regexes, if a repository's name matches any of the, it is not mirrored by `lohr`
|
/// List of regexes, if a repository's name matches any of the, it is not mirrored by `lohr`
|
||||||
/// even if it contains a `.lorh` file.
|
/// even if it contains a `.lorh` file.
|
||||||
#[serde(with = "serde_regex")]
|
#[serde(with = "serde_regex", default)]
|
||||||
pub blacklist: Vec<regex::Regex>,
|
pub blacklist: Vec<regex::Regex>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue