Updating version config tree version check (Closes: #695091).
This commit is contained in:
parent
0da4e6e3e3
commit
d6a2c442f9
|
@ -1176,19 +1176,18 @@ Check_defaults ()
|
||||||
# except when bootstrapping the functions/defaults etc.).
|
# except when bootstrapping the functions/defaults etc.).
|
||||||
CURRENT_CONFIG_VERSION="$(echo ${LB_CONFIG_VERSION} | awk -F. '{ print $1 }')"
|
CURRENT_CONFIG_VERSION="$(echo ${LB_CONFIG_VERSION} | awk -F. '{ print $1 }')"
|
||||||
|
|
||||||
if [ ${CURRENT_CONFIG_VERSION} -ge 4 ]
|
if [ ${CURRENT_CONFIG_VERSION} -ge 5 ]
|
||||||
then
|
then
|
||||||
Echo_error "This config tree is too new for this version of live-build (${VERSION})."
|
Echo_error "This config tree is too new for this version of live-build (${VERSION})."
|
||||||
Echo_error "Aborting build, please get a new version of live-build."
|
Echo_error "Aborting build, please get a new version of live-build."
|
||||||
|
|
||||||
exit 1
|
exit 1
|
||||||
elif [ ${CURRENT_CONFIG_VERSION} -eq 2 ]
|
elif [ ${CURRENT_CONFIG_VERSION} -eq 3 ]
|
||||||
then
|
then
|
||||||
Echo_error "This config tree is too old for this version of live-build (${VERSION})."
|
Echo_error "This config tree is too old for this version of live-build (${VERSION})."
|
||||||
Echo_error "Aborting build, please repopulate the config tree."
|
Echo_error "Aborting build, please repopulate the config tree."
|
||||||
exit 1
|
exit 1
|
||||||
elif [ ${CURRENT_CONFIG_VERSION} -lt 1 ]
|
else
|
||||||
then
|
|
||||||
Echo_warning "This config tree does not specify a format version or has an unknown version number."
|
Echo_warning "This config tree does not specify a format version or has an unknown version number."
|
||||||
Echo_warning "Continuing build, but it could lead to errors or different results. Please repopulate the config tree."
|
Echo_warning "Continuing build, but it could lead to errors or different results. Please repopulate the config tree."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue