Ensure only first line of commit message is used as changelog

This commit is contained in:
Tristan 2022-06-23 15:40:45 +02:00
parent c965986969
commit fcd7322363
No known key found for this signature in database
GPG Key ID: BDDFC4A0651ACDE4
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ prepare-deb: $(HAPROXY_DEBORIG) $(HAPROXY_BUILDIR)
@for patch in $(BUILD_PATCHES_FILES); do echo "$${patch}" >> "$(DEBIAN_PATCHES_DIR)/series"; done
export BUILD_DATE="$(shell date -u +'%a, %e %b %Y %H:%m:%S %z')" && \
export BUILD_VERSION="$(HAPROXY_VERSION)-$(HAPROXY_SHORTSHA)-1~mangadex+$(BUILD_VERSION_REPOSHA)" && \
export BUILD_MESSAGE="$${BUILD_MESSAGE:-"No build changelog message"}" && \
export BUILD_MESSAGE=$(echo "$${BUILD_MESSAGE:-"No build changelog message"}" | head -n1) && \
envsubst < changelog.debian | tee "$(HAPROXY_BUILDIR)/debian/changelog" && \
cat debian/changelog >> "$(HAPROXY_BUILDIR)/debian/changelog"