Skip to content

Commit 1f059bb

Browse files
authored
Merge pull request #269 from simPod/fix-tmppatch
2 parents 1869e36 + 0c870cc commit 1f059bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ update-compatibility-patch-80:
2828
@git apply tests/php80-compatibility.patch
2929
@printf "Please open your editor and apply your changes\n"
3030
@until [ "$${compatibility_resolved}" == "y" ]; do read -p "Have finished your changes (y|n)? " compatibility_resolved; done && compatibility_resolved=
31-
@git diff -- tests/expected_report.txt tests/fixed > .tmp-patch-80 && mv .tmp-patch-80 tests/php80-compatibility.patch && git apply -R tests/php80-compatibility.patch
31+
@git diff -- tests/expected_report.txt tests/fixed > .tmp-patch && mv .tmp-patch tests/php80-compatibility.patch && git apply -R tests/php80-compatibility.patch
3232
@git commit -m 'Update compatibility patch' tests/php80-compatibility.patch
3333

3434
update-compatibility-patch-81:
3535
@git apply tests/php81-compatibility.patch
3636
@printf "Please open your editor and apply your changes\n"
3737
@until [ "$${compatibility_resolved}" == "y" ]; do read -p "Have finished your changes (y|n)? " compatibility_resolved; done && compatibility_resolved=
38-
@git diff -- tests/expected_report.txt tests/fixed > .tmp-patch-81 && mv .tmp-patch-80 tests/php81-compatibility.patch && git apply -R tests/php81-compatibility.patch
38+
@git diff -- tests/expected_report.txt tests/fixed > .tmp-patch && mv .tmp-patch tests/php81-compatibility.patch && git apply -R tests/php81-compatibility.patch
3939
@git commit -m 'Update compatibility patch' tests/php81-compatibility.patch
4040

4141
vendor: composer.json

0 commit comments

Comments
 (0)