Skip to content

Commit

Permalink
Merge pull request #505 from hacspec/cargo-install-locked
Browse files Browse the repository at this point in the history
fix(cli/setup.sh): `cargo install`: use locked dependencies
  • Loading branch information
jschneider-bensch authored Feb 13, 2024
2 parents e5e8129 + 4f91775 commit 387f984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_rust_binaries() {
for i in driver subcommands ../engine/names/extract; do
(
set -x
cargo install --force --path "cli/$i"
cargo install --locked --force --path "cli/$i"
)
done
}
Expand Down

0 comments on commit 387f984

Please sign in to comment.