14 lines
526 B
Bash
Executable File
14 lines
526 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
APP_DIR="${ROOT_DIR}/frontend/apps/organization"
|
|
|
|
cp "${APP_DIR}/index.html" "${ROOT_DIR}/DashBoard-organization.html"
|
|
cp "${APP_DIR}/assets/common.css" "${ROOT_DIR}/legacy/static/common.css"
|
|
cp "${APP_DIR}/assets/organization.css" "${ROOT_DIR}/legacy/static/organization.css"
|
|
cp "${APP_DIR}/assets/organization.js" "${ROOT_DIR}/legacy/static/organization.js"
|
|
|
|
echo "Published organization app source to legacy runtime files"
|