pokegold/.github/checkdiff.sh
Rangi 5539e3dfab
Some checks failed
CI / build (push) Has been cancelled
CI / build-macos (push) Has been cancelled
Fix CI for Linux and add CI for macOS (#1223)
2026-01-20 19:14:12 -05:00

9 lines
144 B
Bash
Executable File

#!/bin/sh
set -e
if ! git diff-index --quiet HEAD --; then
echo 'Uncommitted changes detected:'
git diff-index HEAD --
return 1
fi