diff options
author | Dan Radez <dradez@redhat.com> | 2017-04-04 12:54:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-04-04 12:54:12 +0000 |
commit | a241a5458819cc3488a2e3934daa4a07c662c9dd (patch) | |
tree | e3bb0a87e7741d63118e80067dd984812c3b1aaa /ci/clean.sh | |
parent | d350e73e338e02513e75648c668fbadbae6dd535 (diff) | |
parent | 21c3c7fa27015fb727ce88cd5eb2821138f08283 (diff) |
Merge "Removing Deprecated ENV handling"
Diffstat (limited to 'ci/clean.sh')
-rwxr-xr-x | ci/clean.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ci/clean.sh b/ci/clean.sh index 262e74bf..4335b821 100755 --- a/ci/clean.sh +++ b/ci/clean.sh @@ -12,19 +12,6 @@ #author: Dan Radez (dradez@redhat.com) #author: Tim Rozet (trozet@redhat.com) -# Backwards compat for old ENV Vars -# Remove in E Release -if [ -n "$CONFIG" ]; then - echo -e "${red}WARNING: ENV var CONFIG is Deprecated, please unset CONFIG and export BASE in its place${reset}" - echo -e "${red}WARNING: CONFIG will be removed in E${reset}" - BASE=$CONFIG -fi -if [ -n "$RESOURCES" ]; then - echo -e "${red}WARNING: ENV var RESOURCES is Deprecated, please unset RESOURCES and export IMAGES in its place${reset}" - echo -e "${red}WARNING: RESOURCES will be removed in E${reset}" - IMAGES=$RESOURCES -fi - # Use default if no param passed BASE=${BASE:-'/var/opt/opnfv'} IMAGES=${IMAGES:-"$BASE/images"} |