Skip to content

Commit

Permalink
Fixed another build-related issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Feb 20, 2016
1 parent 2c4d9d6 commit dc88235
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
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)
-----------------

Expand Down
2 changes: 1 addition & 1 deletion Core/Distrib.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
# 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");
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

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;")

dist: vendor/autoload.php
# Building Baikal $(VERSION)
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)
touch $(BUILD_DIR)/Specific/ENABLE_INSTALL
composer install -d $(BUILD_DIR)
Expand Down

0 comments on commit dc88235

Please sign in to comment.