diff --git a/Makefile b/Makefile index efe5bd0..2aadafb 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ review: $(eval HEAD_REF_PARSED := $(shell git rev-parse $(HEAD_REF))) @echo "Ensuring current HEAD_REF is not BASE_REF" test "$(BASE_REF_PARSED)" != "$(HEAD_REF_PARSED)" - @echo "Verifying if any changes happened in Cargo.lock that require review; otherwise, use `git difftool` directly" + @echo "Verifying if any changes happened in Cargo.lock that require review; otherwise, use: git difftool" test "$(shell git show $(BASE_REF_PARSED):Cargo.lock | sha256sum)" != "$(shell git show $(HEAD_REF_PARSED):Cargo.lock | sha256sum)" $(eval TEMP_REPO := $(shell mktemp -d)) $(call clone-repo,$(TEMP_REPO),$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))),$(BASE_REF_PARSED))