mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 16:17:53 -05:00
6 lines
135 B
Text
6 lines
135 B
Text
|
#!/bin/sh
|
||
|
if git diff --cached --submodule | grep -q "^+"; then
|
||
|
echo "WARNING: You have unpushed changes in submodules."
|
||
|
exit 1
|
||
|
fi
|