view utils/docker-entrypoint.sh @ 218:07670d4d3d32 production

flow: Merged <release> 'v1.6.0' to <master> ('production').
author smith@nwoca.org
date Mon, 09 Oct 2017 17:18:57 +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