2014-01-21 14:30:51 +04:00
|
|
|
#!/bin/bash
|
|
|
|
# This is a simple build script and will be executed on your CI system if
|
|
|
|
# available. Otherwise it will execute while your application is stopped
|
|
|
|
# before the deploy step. This script gets executed directly, so it
|
|
|
|
# could be python, php, ruby, etc.
|
|
|
|
|
|
|
|
cd $OPENSHIFT_REPO_DIR
|
2014-07-07 16:26:51 +04:00
|
|
|
|
|
|
|
# Fix the problem of jekyll-press with non-English language
|
|
|
|
export LANG=ru_RU.UTF-8
|
|
|
|
|
2014-01-21 14:30:51 +04:00
|
|
|
bundle exec jekyll build
|