Ensure the tracker gets updated too

This commit is contained in:
Gwilym Inzani 2023-10-03 22:48:06 +01:00
parent f3e3b6a244
commit 3dddf9761d

View file

@ -41,7 +41,10 @@ pub fn release(matches: &clap::ArgMatches) -> Result<(), Error> {
return Ok(()); return Ok(());
} }
let project_toml_files = glob_many(&root_directory, &["agb-*/Cargo.toml"])?; let project_toml_files = glob_many(
&root_directory,
&["agb-*/Cargo.toml", "tracker/agb-*/Cargo.toml"],
)?;
let agb_cargo_toml = root_directory.join("agb/Cargo.toml"); let agb_cargo_toml = root_directory.join("agb/Cargo.toml");
update_to_version(&root_directory, &agb_cargo_toml, version)?; update_to_version(&root_directory, &agb_cargo_toml, version)?;