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