[util-pkg] simplify check chroot version

This commit is contained in:
udeved 2015-05-03 23:11:12 +02:00 committed by Ramon Buldó
parent c88ea477f9
commit 1068b2c07a

View file

@ -9,14 +9,11 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
get_chroot_pkg_version(){
echo $(cat ${work_dir}/root/.manjaro-tools)
}
check_chroot_pkg_version(){ check_chroot_pkg_version(){
if [[ ${version} != $(get_chroot_pkg_version) ]];then local chroot_version=$(cat ${work_dir}/root/.manjaro-tools)
msg "Your chroot version is outdated. please use the -c switch to recreate the chroot." msg "chroot version: $chroot_version"
if [[ ${version} != $chroot_version ]];then
clean_first=true
fi fi
} }