Commit af4e1ee6 authored by zeke's avatar zeke

try reading new env-file param

parent 94e927bd
......@@ -7,8 +7,22 @@ set -o pipefail # don't ignore exit codes when piping output
# Configure directories
build_dir=$1
cache_dir=$2
env_file=$3
bp_dir=$(cd $(dirname $0); cd ..; pwd)
if [ "$env_file" ]; then
status "before:"
env
status "Here's your env_file:"
status $env_file
source $env_file
status "after:"
env
fi
# Load some convenience functions like status(), echo(), and indent()
source $bp_dir/bin/common.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment