Skip to content

Commit b73f672

Browse files
committed
Fix version check
1 parent 2cb5246 commit b73f672

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.2.17 (2024-04-22)
2+
3+
### Fixed
4+
5+
- Fixed incorrect node version parsing.
6+
17
# 0.2.16 (2024-04-22)
28

39
### Added

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "nodekeeper"
33
description = "All-in-one node management tool."
4-
version = "0.2.16"
4+
version = "0.2.17"
55
authors = ["Ivan Kalinin <i.kalinin@dexpa.io>"]
66
repository = "https://github.com/broxus/nodekeeper"
77
edition = "2021"

src/cli/init/node.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,12 @@ async fn setup_binary(
879879
}
880880

881881
fn parse_node_version(output: &[u8]) -> Option<&str> {
882+
const OLD_PREFIX: &[u8] = b"TON Node, version ";
883+
const NEW_PREFIX: &[u8] = b"EVER Node, version ";
884+
882885
output
883-
.strip_prefix(b"TON Node, version ")
886+
.strip_prefix(NEW_PREFIX)
887+
.or_else(|| output.strip_prefix(OLD_PREFIX))
884888
.and_then(|output| output.split(|&ch| ch == b'\n').next())
885889
.and_then(|output| std::str::from_utf8(output).ok())
886890
}

0 commit comments

Comments
 (0)