1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-23 06:35:34 +00:00

Tiny fix for 'make ChangeLog' to force overwrite of old file

This commit is contained in:
Kim Holviala 2015-12-29 10:58:32 +02:00
parent 7673652b96
commit 81d0ee1348

View File

@ -65,7 +65,7 @@ ChangeLog:
if [ -d .git ]; then \
(./git2changelog > .ChangeLog; \
sed -ne '/2012-12-02/,$$p' ChangeLog >> .ChangeLog; \
mv .ChangeLog ChangeLog); \
mv -f .ChangeLog ChangeLog); \
else true; fi
.PHONY: ChangeLog