Lines Matching +full:- +full:e
7 # http://www.apache.org/licenses/LICENSE-2.0
18 if [[ -n "$1" ]]; then
19 commits=$(git show -s --format=%h ${1}~..HEAD)
21 parents=(`git log -n 1 --format=%p HEAD`)
22 if [[ "${#parents[@]}" -ne 2 ]]; then
26 commits=$(git show -s --format=%h ${parents[0]}..${parents[1]})
29 if [[ -z "${commits}" ]]; then
35 author="$(git show -s --format="%an <%ae>" ${sha})"
36 committer="$(git show -s --format="%cn <%ce>" ${sha})"
43 author="Signed-off-by: ${author}"
44 committer="Signed-off-by: ${committer}"
46 lines="$(git show -s --format=%B ${sha})"
53 if [[ $GITHUB_REPOSITORY == mcu-tools/* ]]; then
61 stripped=$(echo $line | sed -e 's/^\s*//' | sed -e 's/\s*$//')
73 echo -e "Missing \"${author}\" in commit ${sha}"
76 echo -e "Missing \"${committer}\" in commit ${sha}"