#!/usr/bin/env bash set -euo pipefail ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" APP_DIR="${ROOT_DIR}/frontend/apps/team" TARGET_FILE="${ROOT_DIR}/incoming-files/served/mh.html" cp "${APP_DIR}/index.html" "${TARGET_FILE}" echo "Published team app source to ${TARGET_FILE}"