[util-pkg] simplify check chroot version

This commit is contained in:
udeved 2015-05-03 23:11:12 +02:00
parent 39839c963c
commit f8b4696059

View file

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