Fix typo in variable name

This commit is contained in:
JohnTheCoolingFan 2023-04-03 21:06:29 +03:00 committed by GitHub
parent ac32aa812b
commit 0cf3a2289e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -514,31 +514,31 @@ pub fn init(opts: &NewOptions, config: &Config) -> CargoResult<NewProjectKind> {
let mut version_control = opts.version_control;
if version_control == None {
let mut num_detected_vsces = 0;
let mut num_detected_vcses = 0;
if path.join(".git").exists() {
version_control = Some(VersionControl::Git);
num_detected_vsces += 1;
num_detected_vcses += 1;
}
if path.join(".hg").exists() {
version_control = Some(VersionControl::Hg);
num_detected_vsces += 1;
num_detected_vcses += 1;
}
if path.join(".pijul").exists() {
version_control = Some(VersionControl::Pijul);
num_detected_vsces += 1;
num_detected_vcses += 1;
}
if path.join(".fossil").exists() {
version_control = Some(VersionControl::Fossil);
num_detected_vsces += 1;
num_detected_vcses += 1;
}
// if none exists, maybe create git, like in `cargo new`
if num_detected_vsces > 1 {
if num_detected_vcses > 1 {
anyhow::bail!(
"more than one of .hg, .git, .pijul, .fossil configurations \
found and the ignore file can't be filled in as \