index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Michael Straube <straubem@gmx.de> | 2017-04-12 16:53:53 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2017-04-17 10:50:41 +1000 |
commit | 4f2fea240d3039294f6614003206a3dd1f67cfc5 (patch) | |
tree | e0e7cfb79f5ffcba18c3924e46ec1af5069de757 | |
parent | 3c013f68ac06d791830fd722b17bc771df47d436 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 6 |
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 |