From b9b847f5da3da9179c5cfe47e1b7953e1924379a Mon Sep 17 00:00:00 2001 From: Jonas Date: Tue, 22 Oct 2024 14:30:29 +0200 Subject: [PATCH] chore(build): Exclude rector.php when building the release tarball Fixes: #1541 Signed-off-by: Jonas --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c1cab8f6f..77d1ea15b 100644 --- a/Makefile +++ b/Makefile @@ -138,6 +138,7 @@ build: node-modules build-js-production composer-install-no-dev --exclude="$(APP_NAME)/package-lock.json" \ --exclude="$(APP_NAME)/package.json" \ --exclude="$(APP_NAME)/psalm.xml" \ + --exclude="$(APP_NAME)/rector.php" \ --exclude="$(APP_NAME)/renovate.json" \ --exclude="$(APP_NAME)/src" \ --exclude="$(APP_NAME)/stylelint.config.js" \