Files
tdc114plus/scripts/bootstrap.sh
T

19 lines
414 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
APP_DIR="$ROOT_DIR/app"
if ! command -v flutter >/dev/null 2>&1; then
echo "flutter command not found. Install Flutter SDK before running bootstrap." >&2
exit 127
fi
if [ ! -d "$APP_DIR" ]; then
echo "app directory does not exist. Run ./scripts/create-flutter-app.sh first." >&2
exit 1
fi
cd "$APP_DIR"
flutter pub get