src: add commit-ebuild, new-ebuild and update-submodules

This commit is contained in:
Maciej Barć
2020-12-19 13:28:47 +01:00
parent 3663b96dfb
commit d9cd15f648
3 changed files with 95 additions and 0 deletions

13
src/update-submodules Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
trap 'exit 128' INT
export PATH
git submodule update --init --recursive
git submodule update --remote --merge
git add .
git commit -m "submodules update"
git pull --verbose
git push --verbose