mirror of
https://github.com/ApfelTeeSaft/FunkinMP.git
synced 2026-08-28 19:19:09 +00:00
6 lines
135 B
Bash
Executable File
6 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
|