Compare commits
18 commits
gob.mx/alm
...
master
Author | SHA1 | Date | |
---|---|---|---|
97b85f4bd9 | |||
281457d9c9 | |||
816ed9aca5 | |||
4a23dbac89 | |||
b4dea4ed66 | |||
|
8a31275554 | ||
a6daacf79b | |||
25843d8eaf | |||
73ce9de293 | |||
dde9a88fc9 | |||
9c7cd9f562 | |||
cf5a2151e6 | |||
e608e1738d | |||
d0c53911a7 | |||
d66980390b | |||
6cd518cf4f | |||
483fecd1ff | |||
2754182d7f |
3 changed files with 31 additions and 0 deletions
1
CentOS-9
Symbolic link
1
CentOS-9
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
rpmbuild
|
0
rpmbuild/SOURCES/patchset-1.1/0015-gob-mx-1.0.patch
Normal file
0
rpmbuild/SOURCES/patchset-1.1/0015-gob-mx-1.0.patch
Normal file
30
scripts/weekly-update.sh
Normal file
30
scripts/weekly-update.sh
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#Es necesario agregar el remoto de core
|
||||||
|
#git remote add upstream https://git.libreoffice.org/core
|
||||||
|
set -x
|
||||||
|
|
||||||
|
pushd night-v2-updates
|
||||||
|
git fetch --all --tags
|
||||||
|
git merge --abort
|
||||||
|
git reset --hard
|
||||||
|
git clean -df
|
||||||
|
|
||||||
|
git checkout -q -f origin/master
|
||||||
|
|
||||||
|
git fetch upstream master
|
||||||
|
|
||||||
|
DATE="$(date +%Y-%m-%d)"
|
||||||
|
git branch -D actualizacion-master-"$DATE"
|
||||||
|
git checkout -b actualizacion-master-"$DATE"
|
||||||
|
git merge --no-commit upstream/master
|
||||||
|
|
||||||
|
|
||||||
|
if [ "$?" -eq "0" ]; then
|
||||||
|
#hacer push de rama
|
||||||
|
git commit -a -m "actualizacion automatica $DATE"
|
||||||
|
git push origin actualizacion-master-"$DATE"
|
||||||
|
else
|
||||||
|
#enviar mensaje de log de error
|
||||||
|
echo "ERR_BOT: No actualizO repositorio"
|
||||||
|
fi
|
||||||
|
|
||||||
|
popd
|
Loading…
Reference in a new issue