From 22d5e03657896023038e6f93f4321f39c06a3f23 Mon Sep 17 00:00:00 2001 From: Erik Flodin Date: Tue, 29 Dec 2020 15:38:51 +0100 Subject: [PATCH] Fix contrib make target Set shell explicitly as it doesn't work with the default shell on Debian. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15539cc..9154355 100644 --- a/Makefile +++ b/Makefile @@ -172,8 +172,9 @@ yadm.md: yadm.1 @groff -man -Tascii ./yadm.1 | col -bx | sed 's/^[A-Z]/## &/g' | sed '/yadm(1)/d' > yadm.md .PHONY: contrib +contrib: SHELL = /bin/bash contrib: - @echo "CONTRIBUTORS\n" > CONTRIBUTORS + @echo -e "CONTRIBUTORS\n" > CONTRIBUTORS @IFS=$$'\n'; for author in $$(git shortlog -ns master gh-pages develop dev-pages | cut -f2); do \ git log master gh-pages develop dev-pages \ --author="$$author" --format=tformat: --numstat | \