Added more insults

This commit is contained in:
Joseph Geis 2020-10-03 21:37:39 -07:00
parent 8d854c2d78
commit ba39f70736

12
git-blame-someone-else Normal file → Executable file
View file

@ -16,4 +16,14 @@ COMMIT=$(git rev-parse --short $2)
git rebase --continue git rebase --continue
} &> /dev/null } &> /dev/null
echo "$AUTHOR_NAME is now the author of $COMMIT. You're officially an asshole."; INSULTS=(
"You're officially an asshole."
"Great job."
"You dirty animal."
"They owe you one."
)
INDEX=$(($RANDOM % ${#INSULTS[@]}))
echo "$AUTHOR_NAME is now the author of $COMMIT. ${INSULTS[$INDEX]}";