Skip to content

Commit

Permalink
Merge branch 'master' into feature/fix-docker-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanilves authored Oct 4, 2020
2 parents 6a06850 + f6bd6d5 commit fac7f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ vet: fail-on-errors
semantic: REGEX:="^(feat|fix|docs|style|refactor|test|chore|localize)(\([a-zA-Z0-9\/_-]+\))?: [a-zA-Z]"
semantic:
@if [[ -n "${RANGE}" ]]; then \
git log --pretty="format:%s" ${RANGE} | grep -v "Merge pull request" \
git log --pretty="format:%s" ${RANGE} | egrep -v "(Merge pull request|Merge branch)" \
| egrep -v ${REGEX} | awk '{print "NON-SEMANTIC: "$$0}' | grep . \
&& echo -e "\e[1m\e[31mFATAL: Non-semantic commit messages found (${RANGE})!\e[0m" && exit 1 || echo "OK"; \
else \
Expand Down

0 comments on commit fac7f6c

Please sign in to comment.