Fix contrib make target
Set shell explicitly as it doesn't work with the default shell on Debian.
This commit is contained in:
parent
53e3288234
commit
22d5e03657
1 changed files with 2 additions and 1 deletions
3
Makefile
3
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
|
@groff -man -Tascii ./yadm.1 | col -bx | sed 's/^[A-Z]/## &/g' | sed '/yadm(1)/d' > yadm.md
|
||||||
|
|
||||||
.PHONY: contrib
|
.PHONY: contrib
|
||||||
|
contrib: SHELL = /bin/bash
|
||||||
contrib:
|
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 \
|
@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 \
|
git log master gh-pages develop dev-pages \
|
||||||
--author="$$author" --format=tformat: --numstat | \
|
--author="$$author" --format=tformat: --numstat | \
|
||||||
|
|
Loading…
Reference in a new issue