add build & build stage success messages
This commit is contained in:
parent
24aab15d2a
commit
af040d7803
|
@ -100,3 +100,5 @@ lb chroot_sysfs remove ${@}
|
|||
lb chroot_selinuxfs remove ${@}
|
||||
lb chroot_proc remove ${@}
|
||||
lb chroot_devpts remove ${@}
|
||||
|
||||
Echo_message "Binary stage completed"
|
||||
|
|
|
@ -61,3 +61,5 @@ lb chroot_sysfs remove ${@}
|
|||
lb chroot_selinuxfs remove ${@}
|
||||
lb chroot_proc remove ${@}
|
||||
lb chroot_devpts remove ${@}
|
||||
|
||||
Echo_message "Bootstrap stage completed"
|
||||
|
|
|
@ -68,3 +68,9 @@ lb binary ${@}
|
|||
|
||||
# Stage #5: Build supplimentary source disc images
|
||||
lb source ${@}
|
||||
|
||||
if [ "${_COLOR_OUT}" = "false" ]; then
|
||||
Echo_message "Build completed successfully"
|
||||
else
|
||||
Echo_message "%sBuild completed successfully%s" "$(echo ${GREEN})" "$(echo ${NO_COLOR})"
|
||||
fi
|
||||
|
|
|
@ -87,3 +87,5 @@ lb chroot_devpts remove ${@}
|
|||
lb chroot_cache save ${@}
|
||||
|
||||
Chroot chroot "ls -lR" > chroot.files
|
||||
|
||||
Echo_message "Chroot stage completed"
|
||||
|
|
|
@ -66,3 +66,5 @@ then
|
|||
lb chroot_proc remove ${@}
|
||||
lb chroot_devpts remove ${@}
|
||||
fi
|
||||
|
||||
Echo_message "Installer stage completed"
|
||||
|
|
|
@ -24,8 +24,8 @@ Auto_build_config
|
|||
# Processing arguments and configuration files
|
||||
Init_config_data "${@}"
|
||||
|
||||
if [ "${LB_SOURCE}" != "true" ]
|
||||
then
|
||||
if [ "${LB_SOURCE}" != "true" ]; then
|
||||
Echo_message "Source stage disabled, skipping"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
@ -55,3 +55,5 @@ lb chroot_archives source remove ${@}
|
|||
lb chroot_hostname remove ${@}
|
||||
lb chroot_resolv remove ${@}
|
||||
lb chroot_hosts remove ${@}
|
||||
|
||||
Echo_message "Source stage completed"
|
||||
|
|
Loading…
Reference in New Issue