7 lines
135 B
Bash
7 lines
135 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
headAuthor=$(git log -1 --pretty=format:'%ae')
|
||
|
git log --pretty=format:'%ae' CONTRIBUTORS | grep -q "$headAuthor"
|