aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-04 21:47:56 -0700
committerJohn MacFarlane <[email protected]>2022-10-04 21:48:17 -0700
commit3151800f34b898c259e4a2b5db77092dcd2082f7 (patch)
tree8d805e28cbf61ee818241e393750dc321e84f935 /Makefile
parent2c37fc55508cd17fb69d7767a1ac2eec13fa2f46 (diff)
Add authors target to Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index bb75aafc7..dfc71097f 100644
--- a/Makefile
+++ b/Makefile
@@ -51,6 +51,10 @@ uncommitted_changes:
! git diff | grep '.'
.PHONY: uncommitted_changes
+authors: ## prints unique authors since LASTRELEASE (version)
+ git log --pretty=format:"%an" $(LASTRELEASE)..HEAD | sort | uniq
+
+
check-stack:
stack-lint-extra-deps # check that stack.yaml dependencies are up to date
! grep 'git:' stack.yaml # use only released versions