diff options
author | Dan Radez <dradez@redhat.com> | 2017-03-31 09:55:44 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2017-04-03 15:32:31 -0400 |
commit | 21c3c7fa27015fb727ce88cd5eb2821138f08283 (patch) | |
tree | 4bc2818bdc55768163e8046d93c7cb3a3b0748b4 /contrib/simple_deploy.sh | |
parent | 418533f4c431a7435435e090a6a8415080556148 (diff) |
Removing Deprecated ENV handling
Change-Id: I7010fb29bf6927d3d4050d9dd8326a0ec7bc44f1
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'contrib/simple_deploy.sh')
-rw-r--r-- | contrib/simple_deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/simple_deploy.sh b/contrib/simple_deploy.sh index f31db3e2..0b9b6caa 100644 --- a/contrib/simple_deploy.sh +++ b/contrib/simple_deploy.sh @@ -1,9 +1,9 @@ #!/bin/bash set -e apex_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/../ -export CONFIG=$apex_home/build +export BASE=$apex_home/build export LIB=$apex_home/lib -export RESOURCES=$apex_home/.build/ +export IMAGES=$apex_home/.build/ export PYTHONPATH=$PYTHONPATH:$apex_home/lib/python $apex_home/ci/dev_dep_check.sh || true $apex_home/ci/clean.sh |