src: add commit-ebuild, new-ebuild and update-submodules
This commit is contained in:
26
src/commit-ebuild
Executable file
26
src/commit-ebuild
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
|
||||
trap 'exit 128' INT
|
||||
set -e
|
||||
export PATH
|
||||
|
||||
|
||||
pdir="$(git rev-parse --show-prefix)"
|
||||
|
||||
|
||||
FEATURES="sign"
|
||||
export FEATURES
|
||||
|
||||
|
||||
git add .
|
||||
|
||||
if [ -z "${1}" ]
|
||||
then
|
||||
repoman commit
|
||||
else
|
||||
repoman commit -m "${pdir%/}: ${*}"
|
||||
fi
|
||||
|
||||
git pull --verbose
|
||||
git push --verbose
|
Reference in New Issue
Block a user