Skip to content

Commit 88194e7

Browse files
authored
fix(releasing): Update cargo-deb (vectordotdev#19009)
To include fix to not have empty newlines in conffiles. Fixes: vectordotdev#19008 Signed-off-by: Jesse Szwedko <[email protected]>
1 parent c4f2d0e commit 88194e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/environment/prepare.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ git config --global --add safe.directory /git/vectordotdev/vector
55

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

0 commit comments

Comments
 (0)