From 6af1b1456177276c6d0718b73853892887389d8f Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Sun, 22 Mar 2020 20:56:59 +0100 Subject: [PATCH] Ensure that release zip has a config folder --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 912f73c..ba08717 100644 --- a/Makefile +++ b/Makefile @@ -9,8 +9,9 @@ VERSION=$(shell php -r "include 'Core/Distrib.php'; echo BAIKAL_VERSION;") dist: vendor/autoload.php # Building Baikal $(VERSION) rm -r $(BUILD_DIR); true - mkdir -p $(BUILD_DIR) $(BUILD_DIR)/Specific $(BUILD_DIR)/Specific/db + mkdir -p $(BUILD_DIR) $(BUILD_DIR)/Specific $(BUILD_DIR)/Specific/db $(BUILD_DIR)/config touch $(BUILD_DIR)/Specific/db/.empty + touch $(BUILD_DIR)/config/.empty rsync -av \ $(BUILD_FILES) \ --exclude="*.swp" \ @@ -31,4 +32,4 @@ composer.lock: composer.json clean: # Wipe out all local data, and go back to a clean install - rm config/config.yaml config/system.yaml Specific/db/db.sqlite; true + rm config/baikal.yaml Specific/db/db.sqlite; true