Skip to content

Commit

Permalink
build(xtask): 💚 Pin cargo-about (#2524)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmerp authored Nov 21, 2024
1 parent d7f69a6 commit 5cc6248
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alvr/xtask/src/packaging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ pub fn include_licenses(root_path: &Path, gpl: bool) {
}

// Gather licenses with cargo about
cmd!(sh, "cargo install cargo-about").run().unwrap();
cmd!(sh, "cargo install cargo-about --version 0.6.5")
.run()
.unwrap();
let licenses_template = afs::crate_dir("xtask").join("licenses_template.hbs");
let licenses_content = cmd!(sh, "cargo about generate {licenses_template}")
.read()
Expand Down

0 comments on commit 5cc6248

Please sign in to comment.