15 lines
389 B
Bash
Executable File
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 "$@"
|