Fixed another build-related issue.
This commit is contained in:
parent
2c4d9d66c3
commit
dc882350e3
3 changed files with 10 additions and 3 deletions
|
@ -1,6 +1,13 @@
|
||||||
ChangeLog
|
ChangeLog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.3.4 (2016-02-20)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Last build was broken, contained data in the `Specific/` directory. This
|
||||||
|
affected new installs but not upgrades.
|
||||||
|
|
||||||
|
|
||||||
0.3.3 (2016-02-18)
|
0.3.3 (2016-02-18)
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
|
|
@ -24,5 +24,5 @@
|
||||||
# This copyright notice MUST APPEAR in all copies of the script!
|
# This copyright notice MUST APPEAR in all copies of the script!
|
||||||
#################################################################
|
#################################################################
|
||||||
|
|
||||||
define("BAIKAL_VERSION", "0.3.3");
|
define("BAIKAL_VERSION", "0.3.4");
|
||||||
define("BAIKAL_HOMEPAGE", "http://baikal-server.com");
|
define("BAIKAL_HOMEPAGE", "http://baikal-server.com");
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
BUILD_DIR="build/baikal"
|
BUILD_DIR="build/baikal"
|
||||||
|
|
||||||
BUILD_FILES=Core html Specific CHANGELOG.md LICENSE README.md composer.json
|
BUILD_FILES=Core html CHANGELOG.md LICENSE README.md composer.json
|
||||||
|
|
||||||
VERSION=$(shell php -r "include 'Core/Distrib.php'; echo BAIKAL_VERSION;")
|
VERSION=$(shell php -r "include 'Core/Distrib.php'; echo BAIKAL_VERSION;")
|
||||||
|
|
||||||
dist: vendor/autoload.php
|
dist: vendor/autoload.php
|
||||||
# Building Baikal $(VERSION)
|
# Building Baikal $(VERSION)
|
||||||
rm -r $(BUILD_DIR); true
|
rm -r $(BUILD_DIR); true
|
||||||
mkdir -p $(BUILD_DIR)
|
mkdir -p $(BUILD_DIR) $(BUILD_DIR)/Specific $(BUILD_DIR)/Specific/db
|
||||||
cp -R $(BUILD_FILES) $(BUILD_DIR)
|
cp -R $(BUILD_FILES) $(BUILD_DIR)
|
||||||
touch $(BUILD_DIR)/Specific/ENABLE_INSTALL
|
touch $(BUILD_DIR)/Specific/ENABLE_INSTALL
|
||||||
composer install -d $(BUILD_DIR)
|
composer install -d $(BUILD_DIR)
|
||||||
|
|
Loading…
Reference in a new issue