diff mbox

[pacman-dev] makepkg: clean up pkgver and prepare log files

Message ID 20170412145353.22439-1-straubem@gmx.de
State Accepted, archived
Headers show

Commit Message

Michael Straube April 12, 2017, 2:53 p.m. UTC
Delete log files for the pkgver and prepare functions if -c,--clean is
passed.

Fixes FS#51039 and FS#51075

Includes patch submitted by Christian Braun.

Signed-off-by: Michael Straube <straubem@gmx.de>
---
 scripts/makepkg.sh.in | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox

Patch

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 29408929..0218e13b 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -137,6 +137,12 @@  clean_up() {
 		if [[ -n $pkgbase ]]; then
 			local fullver=$(get_full_version)
 			# Can't do this unless the BUILDSCRIPT has been sourced.
+			if (( PKGVERFUNC )); then
+				rm -f "${pkgbase}-${fullver}-${CARCH}-pkgver.log"*
+			fi
+			if (( PREPAREFUNC )); then
+				rm -f "${pkgbase}-${fullver}-${CARCH}-prepare.log"*
+			fi
 			if (( BUILDFUNC )); then
 				rm -f "${pkgbase}-${fullver}-${CARCH}-build.log"*
 			fi