mirror of
https://github.com/pret/pokegold.git
synced 2026-03-22 01:44:20 -05:00
9 lines
144 B
Bash
Executable File
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
|