8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
|
|
git pull
|
|
message="$(git log --merges -n 1)"
|
|
echo $message
|
|
if [[ $message == *"__post__"* ]]; then
|
|
echo "It's there!"
|
|
fi
|