Skip to content

Commit 8268181

Browse files
committed
fix: minor fix of release.sh
Previously version of FC obtained from binary in `release.sh` contained `v` (so it was `v.1.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 <[email protected]>
1 parent b42a3ad commit 8268181

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; cargo pkgid | cut -d# -f2 | (echo -n v; cut -d: -f2))
5656
}
5757

5858
#### MAIN ####

0 commit comments

Comments
 (0)