···11+#!/bin/sh
22+33+# Fail this script if any subcommand fails.
44+set -e
55+66+# Ensure Flutter is in PATH (should have been set up by ci_post_clone.sh)
77+export PATH="$PATH:$HOME/flutter/bin"
88+99+# Change to the project root directory (where pubspec.yaml is located)
1010+cd $CI_PRIMARY_REPOSITORY_PATH
1111+1212+# Run build_runner
1313+dart run build_runner build --delete-conflicting-outputs