Skip to content

Commit

Permalink
fix(releasing): Update cargo-deb (vectordotdev#19009)
Browse files Browse the repository at this point in the history
To include fix to not have empty newlines in conffiles.

Fixes: vectordotdev#19008

Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko committed Nov 2, 2023
1 parent c4f2d0e commit 88194e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/environment/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ git config --global --add safe.directory /git/vectordotdev/vector

rustup show # causes installation of version from rust-toolchain.toml
rustup default "$(rustup show active-toolchain | awk '{print $1;}')"
if [[ "$(cargo-deb --version)" != "1.41.3" ]] ; then
rustup run stable cargo install cargo-deb --version 1.41.3 --force --locked
if [[ "$(cargo-deb --version)" != "2.0.0" ]] ; then
rustup run stable cargo install cargo-deb --version 2.0.0 --force --locked
fi
if [[ "$(cross --version | grep cross)" != "cross 0.2.5" ]] ; then
rustup run stable cargo install cross --version 0.2.5 --force --locked
Expand Down

0 comments on commit 88194e7

Please sign in to comment.