aboutsummaryrefslogtreecommitdiffstats
path: root/packageinstall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packageinstall.sh')
-rw-r--r--packageinstall.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/packageinstall.sh b/packageinstall.sh
index 1374b21..a277e6c 100644
--- a/packageinstall.sh
+++ b/packageinstall.sh
@@ -4,7 +4,7 @@ CHAPTER="$1"
PACKAGE="$2"
if [[ -f "${LFS}/sources/chapter${CHAPTER}/${PACKAGE}" ]]; then
- printf "%b" "${GRN}Package ${YLW}${PACKAGE} ${GRN}already built and installed for ${YLW}Chapter ${CHAPTER}.${RST}\n"
+ printf "%b" "${GRN}Package ${YLW}${PACKAGE} ${GRN}already built and installed${RST}\n"
else
grep -i "^${PACKAGE}" packages.csv | grep -i -v "\.patch;" | while read -r line; do
@@ -16,7 +16,7 @@ else
# Remove existing if exists
rm -rf "${DIRNAME}"
- printf "%b" "${IBLU}Extracting ${YLW}${CACHEFILE}... ${RST}"
+ printf "%b" "${IBLU}Extracting ${YLW}${CACHEFILE}${RST}... "
tar xf "${CACHEFILE}" > /dev/null 2>&1 & pid=$!
spinner "$pid" "${SPINNER}"
retval=$?