11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
APP_DIR="${SCRIPT_DIR}/../apps/platform"
|
|
|
|
cd "${APP_DIR}"
|
|
|
|
exec ./vendor/bin/sail "$@"
|