Makefile: don't use backticks
This commit is contained in:
parent
71bd819797
commit
4714f616ea
2
Makefile
2
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))
|
||||
|
|
Loading…
Reference in New Issue