From 87578a22d9721cad7c42288da2e9ebd9df8016c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Thu, 12 Aug 2021 18:37:11 +0200 Subject: [PATCH] Pass correct patch filename to git apply It has been renamed in 5f167590824ff70299186f8325dc35771a424d7d --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9e97c04..d638724f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ test-fix: vendor @if [ -f "$(PATCH_FILE)" ]; then git apply -R $(PATCH_FILE) ; fi update-compatibility-patch-74: - @git apply tests/php-compatibility.patch + @git apply tests/php74-compatibility.patch @printf "Please open your editor and apply your changes\n" @until [ "$${compatibility_resolved}" == "y" ]; do read -p "Have finished your changes (y|n)? " compatibility_resolved; done && compatibility_resolved= @git diff -- tests/expected_report.txt tests/fixed > .tmp-patch && mv .tmp-patch tests/php-compatibility.patch && git apply -R tests/php-compatibility.patch