diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-08-16 17:22:45 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-08-16 17:22:51 -0500 |
commit | e44d2f770f28c3290863e509cb2406dcb67bd686 (patch) | |
tree | fecc9931d3c2299b23d9b6c921c7b8dcd3e081d8 /auth/docker/dclean.sh | |
parent | e92a354be569d7be3d6e11ab11e32bd78ff9227d (diff) |
Fix shs for REPO
Issue-ID: AAF-419
Change-Id: I2cec912c935a28c818ad4358cd236c153de54c30
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/docker/dclean.sh')
-rw-r--r-- | auth/docker/dclean.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/auth/docker/dclean.sh b/auth/docker/dclean.sh index b502c022..d83a1329 100644 --- a/auth/docker/dclean.sh +++ b/auth/docker/dclean.sh @@ -3,9 +3,9 @@ . ./d.props if [ "$1" == "" ]; then - AAF_COMPONENTS=$(ls ../aaf_${VERSION}/bin | grep -v '\.') + AAF_COMPONENTS="$(cat components) config core agent" else - AAF_COMPONENTS=$1 + AAF_COMPONENTS="$@" fi docker image rm $ORG/$PROJECT/aaf_agent:${VERSION} @@ -15,5 +15,9 @@ docker image rm $ORG/$PROJECT/aaf_core:${VERSION} echo "Y" | docker container prune for AAF_COMPONENT in ${AAF_COMPONENTS}; do docker image rm $ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION} + if [ "$PREFIX" = "" ]; then + docker image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:${VERSION} + docker image rm $DOCKER_REPOSITORY/$ORG/$PROJECT/aaf_$AAF_COMPONENT:latest + fi done echo "Y" | docker image prune |