blob: 3c1a28fcaca0a3300ccfe5076b690cc9326f6bba [file] [log] [blame]
Instrumental0cf3f312018-04-25 16:34:26 -05001#!/bin/bash
Sai Gandham66118342018-04-04 15:33:05 -05002# 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