Ensure that release zip has a config folder
This commit is contained in:
parent
afb6d86d3c
commit
6af1b14561
1 changed files with 3 additions and 2 deletions
5
Makefile
5
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
|
||||
|
|
Loading…
Reference in a new issue