Permalink
Browse files

Build fixes (#28)

* actions.sh: make sure _build exists

Otherwise writing the release date there will be difficult!

* Use relative path for _tmp
  • Loading branch information...
lheckemann authored and andychu committed Aug 8, 2017
1 parent 46b7a0c commit d522a97ec57fa9e1985724061ee01896e9639240
Showing with 3 additions and 2 deletions.
  1. +3 −2 build/actions.sh
View
@@ -12,6 +12,7 @@ set -o errexit
source build/common.sh
write-release-date() {
mkdir -p _build
date > _build/release-date.txt
}
@@ -59,10 +60,10 @@ app-deps() {
local prefix=_build/$app_name/app-deps
# I need the right relative path for Oil
ln -s -f $PWD/build/app_deps.py ~/git/oil/_tmp
ln -s -f $PWD/build/app_deps.py _tmp
PYTHONPATH=$pythonpath \
$PREPARE_DIR/python -S ~/git/oil/_tmp/app_deps.py $main_module $prefix
$PREPARE_DIR/python -S _tmp/app_deps.py $main_module $prefix
}
files-manifest() {

0 comments on commit d522a97

Please sign in to comment.