mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Ensure the tracker gets updated too
This commit is contained in:
parent
f3e3b6a244
commit
3dddf9761d
|
@ -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)?;
|
||||||
|
|
Loading…
Reference in a new issue