Build/Helper/Scripts/commit.sh
2025-04-02 13:33:49 +00:00

10 lines
184 B
Bash
Executable File

#!/bin/bash
MSG="$1"
git submodule foreach git add .
git submodule foreach "git commit -m \"${MSG}\" || true"
git submodule foreach git push
git add .
git commit -m "${MSG}"
git push