Update iotop build.

This commit is contained in:
Darren 'Tadgy' Austin 2022-10-11 00:54:07 +01:00
commit f09333fe4a

View file

@ -1,5 +1,5 @@
#!/bin/bash
# Version: 0.6.11
# Version: 0.6.12
# Copyright (c) 2005-2022:
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
# Licensed under the terms of the GNU General Public License version 3.
@ -79,10 +79,10 @@ done
(( ${BUILD_FORCE:-0} != 1 )) && {
while read -r PKG; do
check_installed "$PKG" && die "Conflicting package installed: $PKG"
done < <(printf "%s\\n" "${BUILD_CONFLICTS[@]}")
done < <(printf "%s " "${BUILD_CONFLICTS[@]}")
while read -r PKG; do
check_installed "$PKG" || die "Required package not installed: $PKG"
done < <(printf "%s\\n" "${BUILD_REQUIRES[@]}")
done < <(printf "%s " "${BUILD_REQUIRES[@]}")
}
# Gather some system information.