[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #227 from turkenf/check-diff-error-message
Browse files Browse the repository at this point in the history
Add check diff error message
  • Loading branch information
turkenh committed Mar 28, 2023
2 parents 7da2fde + 504598c commit 5eb408f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makelib/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ reviewable:
# ensure generate target doesn't create a diff
check-diff: generate
@$(INFO) checking that branch is clean
@if git status --porcelain | grep . ; then $(FAIL); else $(OK) branch is clean; fi
@if git status --porcelain | grep . ; then $(ERR) There are uncommitted changes after running make generate. Please ensure you commit all generated files in this branch after running make generate. && false; else $(OK) branch is clean; fi

.PHONY: publish.init publish.artifacts publish promote.init promote.artifacts promote tag generate reviewable check-diff

Expand Down

0 comments on commit 5eb408f

Please sign in to comment.