diff options
Diffstat (limited to 'crates/mozart/src')
| -rw-r--r-- | crates/mozart/src/commands/init.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/mozart/src/commands/init.rs b/crates/mozart/src/commands/init.rs index 49176ab..1a6df37 100644 --- a/crates/mozart/src/commands/init.rs +++ b/crates/mozart/src/commands/init.rs @@ -704,6 +704,9 @@ fn parse_repositories(repos: &[String]) -> anyhow::Result<Vec<RawRepository>> { repo_type, url: Some(url), package: None, + only: None, + exclude: None, + canonical: None, }); } else { // Plain URL @@ -711,6 +714,9 @@ fn parse_repositories(repos: &[String]) -> anyhow::Result<Vec<RawRepository>> { repo_type: "vcs".to_string(), url: Some(repo.clone()), package: None, + only: None, + exclude: None, + canonical: None, }); } } |
