From 4714f616ea89014b3661269a4c45f454f266d317 Mon Sep 17 00:00:00 2001 From: ryan Date: Sat, 24 May 2025 21:08:55 -0400 Subject: [PATCH] Makefile: don't use backticks --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))