Skip to content

Commit f007e8d

Browse files
committed
fix: minor fix of release.sh
Previously version of FC obtained from binary in release.sh contained v (so it was v1.4.0). But in Cargo.toml of FC version was 1.4.0. Because of this difference release process was failing. This change fixes this issue. Signed-off-by: Egor Lazarchuk <yegorlz@amazon.co.uk>
1 parent c673b12 commit f007e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function strip-and-split-debuginfo {
5252
}
5353

5454
function get-firecracker-version {
55-
(cd src/firecracker; cargo pkgid | cut -d# -f2 | cut -d: -f2)
55+
(cd src/firecracker; echo -n v; cargo pkgid | cut -d# -f2 | cut -d: -f2)
5656
}
5757

5858
#### MAIN ####

0 commit comments

Comments
 (0)