Files
sharedinbox/scripts/run_analyze.sh
T
2026-04-16 11:48:37 +02:00

7 lines
122 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
START=$(date +%s)
flutter analyze
END=$(date +%s)
echo "analyze: $((END - START))s"