Makefile: allow headers to have old years
This commit is contained in:
parent
c9c2e9bc42
commit
4acdca89e5
4
Makefile
4
Makefile
@ -185,12 +185,12 @@ unit:
|
|||||||
test: lint unit
|
test: lint unit
|
||||||
|
|
||||||
header: .header
|
header: .header
|
||||||
@HEADER=$$(sed "s/YEAR/$$(date '+%Y')/" .header); \
|
@HEADER=$$(cat .header); \
|
||||||
HEADER_LEN=$$(wc -l .header | awk '{print $$1}'); \
|
HEADER_LEN=$$(wc -l .header | awk '{print $$1}'); \
|
||||||
FILES=; \
|
FILES=; \
|
||||||
for f in $(GO_FILES); do \
|
for f in $(GO_FILES); do \
|
||||||
for i in 0 1 2 3 4 5; do \
|
for i in 0 1 2 3 4 5; do \
|
||||||
FILE=$$(tail -n +$$i $$f | head -n $$HEADER_LEN); \
|
FILE=$$(tail -n +$$i $$f | head -n $$HEADER_LEN | sed "s/[0-9]\{4\}/YEAR/"); \
|
||||||
[ "$$FILE" = "$$HEADER" ] && continue 2; \
|
[ "$$FILE" = "$$HEADER" ] && continue 2; \
|
||||||
done; \
|
done; \
|
||||||
FILES="$$FILES$$f "; \
|
FILES="$$FILES$$f "; \
|
||||||
|
Loading…
Reference in New Issue
Block a user