diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 23:11:03 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 23:47:02 -0500 |
commit | 440eda1952025bb2d9a76bd8bf62c296ca80f956 (patch) | |
tree | 422e0358d43f909c08ce769e2f5ac2d234eaf633 /packageinstall.sh | |
parent | 37c2a2caa41c7c67b0a7daf4107d9a2ac12256dd (diff) |
If extraction is successful, print OK. Remove new line before printing the compiling package message.
Diffstat (limited to 'packageinstall.sh')
-rw-r--r-- | packageinstall.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packageinstall.sh b/packageinstall.sh index 28f9f4b..5105fbb 100644 --- a/packageinstall.sh +++ b/packageinstall.sh @@ -23,11 +23,13 @@ else if [ "$retval" -ne 0 ]; then printf "%b" "${GRN}Extraction ${RED}FAILED!${RST}\n" return $retval + else + printf "%b" "${GRN}OK${RST}\n" fi pushd "${DIRNAME}" > /dev/null || return 1 - printf "%b" "\n${CYN}Compiling ${YLW}${PACKAGE}${RST}... " + printf "%b" "${CYN}Compiling ${YLW}${PACKAGE}${RST}... " mkdir -p "${LFS}/sources/log/chapter${CHAPTER}/" source "${LFS}/sources/chapter${CHAPTER}/${PACKAGE}.sh" 2>&1 > "${LFS}/sources/log/chapter${CHAPTER}/${PACKAGE}.log" 2>&1 & pid=$! |