summaryrefslogtreecommitdiff
path: root/src/chroot-tools/hooks-chcleanup.sh
blob: 3c91c35ac3d96b3f4d1de7612ac21296e2c68769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
set -euE

hooks_pre_build+=("clean_chroot")

clean_chroot() (
	set +x
	local copydir=$1
	if $INCHROOT; then
		cd /startdir
		sudo -u nobody "$(librelib chroot/chcleanup)"
	else
		librechroot "${librechroot_flags[@]}" clean-pkgs
	fi
)