mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 22:04:29 +00:00
6 lines
135 B
Bash
6 lines
135 B
Bash
#!/bin/sh
|
|
if git diff --cached --submodule | grep -q "^+"; then
|
|
echo "WARNING: You have unpushed changes in submodules."
|
|
exit 1
|
|
fi
|