diff --git a/_build/Jenkinsfile.i18n b/_build/Jenkinsfile.i18n index 754d80f4474e96c37fa3e663d1076f19d897d0fb..fa6c24e34712592267530422797402475ba4a3aa 100644 --- a/_build/Jenkinsfile.i18n +++ b/_build/Jenkinsfile.i18n @@ -121,9 +121,10 @@ pipeline { git config user.name ${GIT_USER_NAME} git config user.email ${GIT_USER_EMAIL} git config --local core.hooksPath .git/hooks - gitdir=$(git rev-parse --git-dir); scp -p -P 29420 jenkins@review.jami.net:hooks/commit-msg ${gitdir}/hooks/ + curl -Lo .git/hooks/commit-msg https://review.jami.net/tools/hooks/commit-msg + chmod +x .git/hooks/commit-msg git add locales - git commit -m'i18n: automatic bump' + git commit --author "${GIT_USER_NAME} ${GIT_USER_EMAIL}" -m'i18n: automatic bump' git push ${GIT_PUSH_URL} HEAD:refs/for/master """ }