diff options
Diffstat (limited to 'local/update-04-utf8')
-rwxr-xr-x | local/update-04-utf8 | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/local/update-04-utf8 b/local/update-04-utf8 index 0365dec..8195931 100755 --- a/local/update-04-utf8 +++ b/local/update-04-utf8 @@ -1,5 +1,4 @@ #!/bin/bash -# gentoo-infra: infra/githooks.git:local/update-04-utf8 # Copyright 2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 or later @@ -11,17 +10,6 @@ newrev=$3 export LC_MESSAGES=C -# special cases -zeros=0000000000000000000000000000000000000000 -# branch removal -[[ ${newrev} == "${zeros}" ]] && exit 0 -# new branch; try to find a merge base with master -if [[ ${oldrev} == "${zeros}" && ${refname} != refs/heads/master ]]; then - mergebase=$(git merge-base refs/heads/master "${newrev}") - [[ -n ${mergebase} ]] && oldrev=${mergebase} - [[ -z ${mergebase} ]] && echo "WARNING: No common commits with master!" -fi - ret=0 while read commithash; do # verify that the commit object (including author, committer, commit |