diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/binary | 2 | ||||
-rwxr-xr-x | scripts/build/bootstrap | 2 | ||||
-rwxr-xr-x | scripts/build/build | 6 | ||||
-rwxr-xr-x | scripts/build/chroot | 2 | ||||
-rwxr-xr-x | scripts/build/installer | 2 | ||||
-rwxr-xr-x | scripts/build/source | 6 |
6 files changed, 18 insertions, 2 deletions
diff --git a/scripts/build/binary b/scripts/build/binary index 461ea517b..07863073e 100755 --- a/scripts/build/binary +++ b/scripts/build/binary @@ -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" diff --git a/scripts/build/bootstrap b/scripts/build/bootstrap index edd996f29..f46075336 100755 --- a/scripts/build/bootstrap +++ b/scripts/build/bootstrap @@ -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" diff --git a/scripts/build/build b/scripts/build/build index 1eb60a43e..7fcd1e820 100755 --- a/scripts/build/build +++ b/scripts/build/build @@ -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 diff --git a/scripts/build/chroot b/scripts/build/chroot index a1eae1176..09c09e15e 100755 --- a/scripts/build/chroot +++ b/scripts/build/chroot @@ -87,3 +87,5 @@ lb chroot_devpts remove ${@} lb chroot_cache save ${@} Chroot chroot "ls -lR" > chroot.files + +Echo_message "Chroot stage completed" diff --git a/scripts/build/installer b/scripts/build/installer index f4f9e7b09..56ed724f4 100755 --- a/scripts/build/installer +++ b/scripts/build/installer @@ -66,3 +66,5 @@ then lb chroot_proc remove ${@} lb chroot_devpts remove ${@} fi + +Echo_message "Installer stage completed" diff --git a/scripts/build/source b/scripts/build/source index 20fe47aea..3b67f81c1 100755 --- a/scripts/build/source +++ b/scripts/build/source @@ -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" |