Skip to content

Commit

Permalink
fix: case sensitive cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
nohehf committed May 13, 2024
1 parent f61449d commit 4cb99a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ test: develop
.PHONY: validate-tags release

VERSION_PY := $(shell grep 'version = ' pyproject.toml | sed -e 's/version = "\(.*\)"/\1/')
VERSION_RS := $(shell grep 'version =' cargo.toml | sed -n 's/^version = "\(.*\)"/\1/p')
VERSION_RS := $(shell grep 'version =' Cargo.toml | sed -n 's/^version = "\(.*\)"/\1/p')

# Usage: make validate-tags TAG=1.0.0
validate-tag:
Expand Down

0 comments on commit 4cb99a5

Please sign in to comment.