mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
8 lines
177 B
Bash
Executable file
8 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
headAuthor=$(git log -1 --pretty=format:'%ae')
|
|
git log --pretty=format:'%ae' CONTRIBUTORS | grep -q "$headAuthor"
|
|
|
|
echo "$headAuthor found in CONTRIBUTORS"
|