view utils/docker-entrypoint.sh @ 539:5d5525414c8d production tip

update exec-all-projects-docker.sh to search for ./env/*-shared.properties in place of ./env/ssdt-*-shared.properties. ESS doesn't follow the same pattern for property file names.
author Marc Davis <marc.davis@mcoecn.org>
date Mon, 13 May 2024 13:28:30 -0400
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