From d2de6f9bcd805eca0e478f2c174c3a76cb3d7f43 Mon Sep 17 00:00:00 2001 From: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> Date: Thu, 5 Feb 2026 09:54:04 -0300 Subject: [PATCH] fix: correct path to small_valid.pdf fixture in Makefile The fixture file is located at tests/php/fixtures/pdfs/small_valid.pdf, not tests/php/fixtures/small_valid.pdf. This file is required by DeveloperController and must be included in the appstore package. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 460f373d37..a077f5b068 100644 --- a/Makefile +++ b/Makefile @@ -123,7 +123,7 @@ appstore: rm -rf $(appstore_sign_dir)/$(app_name)/3rdparty/vendor-bin rm -rf $(appstore_sign_dir)/$(app_name)/3rdparty/scoper.inc.php mkdir -p $(appstore_sign_dir)/$(app_name)/tests/php/fixtures - cp tests/php/fixtures/small_valid.pdf $(appstore_sign_dir)/$(app_name)/tests/php/fixtures + cp tests/php/fixtures/pdfs/small_valid.pdf $(appstore_sign_dir)/$(app_name)/tests/php/fixtures mkdir -p $(cert_dir) if [ -n "$$GITHUB_ACTION" ]; then \