Mercurial > public > ssdt-docker
view utils/docker-entrypoint.sh @ 184:26892906f365 production
Added tag hotfix/1.2.2 for changeset fc93880cda8d
author | smith@nwoca.org |
---|---|
date | Wed, 20 Sep 2017 16:19:18 +0100 |
parents | b997ad087ac1 |
children |
line wrap: on
line source
#!/bin/bash set -e if [ "$1" = 'update' ]; then mkdir -p $SSDT_HOME cd $SSDT_HOME if [ ! -d ".hg" ]; then echo "cloning repository $SSDT_DOCKER to $SSDT_HOME" hg init fi branch=${2:-production} echo "pulling updates from $SSDT_DOCKER ($branch)" hg pull -y $SSDT_DOCKER hg revert -a hg update $branch else exec "$@" fi