mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
5 lines
135 B
Bash
5 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
|