blob: 99a88f96e8899ada8b0645b07240c191d0be6e3f [file] [log] [blame]
Sai Gandham66118342018-04-04 15:33:05 -05001#
2# Docker push Script. Reads all the components generated by install, on per-version basis
3#
Instrumental12f7f462018-04-23 15:43:47 -05004# Pull in Variables from d.props
5. ./d.props
Sai Gandham66118342018-04-04 15:33:05 -05006
7if ["$1" == ""]; then
8 AAF_COMPONENTS=`ls ../aaf_*HOT/bin | grep -v '\.'`
9else
10 AAF_COMPONENTS=$1
11fi
12
13for AAF_COMPONENT in ${AAF_COMPONENTS}; do
14 docker push ${DOCKER_REPOSITORY}/${ORG}/${PROJECT}/aaf_${AAF_COMPONENT}:${VERSION}
15
Instrumental12f7f462018-04-23 15:43:47 -050016done