Files
carrotpilot/release/check-dirty.sh
Vehicle Researcher ecf4d58ce5 c4-v1
2026-01-28 08:27:01 +09:00

12 lines
224 B
Bash
Executable File

#!/usr/bin/env bash
set -e
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
cd $DIR
if [ ! -z "$(git status --porcelain)" ]; then
echo "Dirty working tree after build:"
git status --porcelain
exit 1
fi