From e2547734fd91c35bf3eaac1d9486b0f3c2877192 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 11:32:58 -0500 Subject: Exit if copying required scripts and other files fails. --- lfs.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index 2403870..e5aba2d 100755 --- a/lfs.sh +++ b/lfs.sh @@ -91,9 +91,14 @@ esac # Copy scripts and csv files to LFS sources target printf "%b" "${GRN}Copying required files to ${YLW}${LFS}/sources \ -${GRN}target directory...${RST}\n" +${GRN}target directory... ${RST}" + +if ! cp -rf ./*.sh chapter* ./*.csv "${LFS}/sources"; then + printf "%b" "${IRED}FAILED!${RST}\n" +else + printf "%b" "${GRN}OK${RST}\n" +fi -cp -rf ./*.sh chapter* ./*.csv "${LFS}/sources" cd "${LFS}/sources" || exit 1 # Download packages and patches -- cgit v1.2.3-54-g00ecf