TenantAtlas/scripts/platform-sail
2026-04-08 14:14:54 +02:00

15 lines
389 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# Platform-only compatibility wrapper for repo-root tooling.
# Official root workspace scripts may orchestrate through this helper, but the
# authoritative Sail runtime still lives under apps/platform.
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
APP_DIR="${SCRIPT_DIR}/../apps/platform"
cd "${APP_DIR}"
exec ./vendor/bin/sail "$@"