diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:47:32 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:47:32 -0500 |
commit | 69e6326758d7e83e542d69ae80d88296e9430bc5 (patch) | |
tree | 0a42c6c2de3f7a3bd9bcdd8e7c708a67dacc649e /packageinstall.sh | |
parent | 3da09fc4dbf0cf606485bef3a50d0e2264e1bc1c (diff) |
Return the exit status from packageinstall scrip to the chapter loops in lfs.sh and for sure stop the script when non zero status is returned.
Diffstat (limited to 'packageinstall.sh')
-rw-r--r-- | packageinstall.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packageinstall.sh b/packageinstall.sh index 848e4d8..bb6d230 100644 --- a/packageinstall.sh +++ b/packageinstall.sh @@ -36,13 +36,13 @@ else if [ "$retval" -ne 0 ]; then echo -e "\n${GRN}Compiling ${YLW}${PACKAGE} ${RED}FAILED!${RST}" popd > /dev/null - exit 1 + return $retval + else + echo -e "\n${GRN}Done Compiling ${YLW}${PACKAGE}${RST}" + touch ${LFS}/sources/chapter${CHAPTER}/${PACKAGE} + rm -rf ${LFS}/sources/${DIRNAME} fi - echo -e "\n${GRN}Done Compiling ${YLW}${PACKAGE}${RST}" - touch ${LFS}/sources/chapter${CHAPTER}/${PACKAGE} - rm -rf ${LFS}/sources/${DIRNAME} - popd > /dev/null done |