Skip to content

Commit 1a85a16

Browse files
committed
fix version check
1 parent 413f36e commit 1a85a16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

s/check-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ CLI_VERSION_PATTERN = r"version = \"(?P<version>\d+\.\d+\.\d+)\""
3838

3939

4040
def find_cli_version() -> str:
41-
cargo_toml = squawk_root() / "crates/squawk/Cargo.toml"
41+
cargo_toml = squawk_root() / "Cargo.toml"
4242
for line in cargo_toml.read_text().split("\n"):
4343
match = re.match(CLI_VERSION_PATTERN, line)
4444
if match is not None:

0 commit comments

Comments
 (0)