#!/usr/bin/env bash
set -euE
hooks_pre_build+=("clean_chroot")
clean_chroot() (
set +x
local copydir=$1
if $INCHROOT; then
cd /build
sudo -u nobody "$(librelib chroot/chcleanup)"
else
librechroot -l "$copydir" clean-pkgs
fi
r=$?; echo clean_chroot returning $r; return $r
)