mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
13 lines
384 B
Bash
13 lines
384 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
git fetch origin master:master # on CIs it is common to fetch only the current branch
|
||
|
|
||
|
messages=$(git log --format=%s master..) # commit messages between this branch and master
|
||
|
|
||
|
if [[ $messages =~ "fixup!" ]]; then
|
||
|
echo 'Failure: Some commit message contains "fixup!" string.'
|
||
|
exit 1
|
||
|
else
|
||
|
echo 'Success: No commit messages containing "fixup!" string.'
|
||
|
fi
|