aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-08 18:50:28 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-08 18:50:28 -0500
commite7a38788125880c6817ea63f300c0575d456cdbc (patch)
treee44f65682d95fc55ae089312c005859c3fbf10f9
parentdd8ac86ccddee8f91a47fe332991105be8d3bf8e (diff)
Add shellcheck directives.
-rwxr-xr-xlfs.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/lfs.sh b/lfs.sh
index 9291767..dc83800 100755
--- a/lfs.sh
+++ b/lfs.sh
@@ -175,7 +175,9 @@ if [[ "$retval" -eq 0 ]]; then
printf "%b" "\n${IWHT}======= ${IYLW}Chapter 7 ${IGRN}Cleanup and Backup \
${IWHT}=======${RST}\n"
+ # shellcheck source=chapter7/cleanup.sh
source "${LFS}"/sources/chapter7/cleanup.sh
+ # shellcheck source=chapter7/backup.sh
source "${LFS}"/sources/chapter7/backup.sh
else
exit "$retval"
@@ -210,7 +212,9 @@ if [[ "$retval" -eq 0 ]]; then
printf "%b" "\n${IWHT}======= ${IYLW}Chapter 8 ${IGRN}Cleanup and Backup \
${IWHT}=======${RST}\n"
+ # shellcheck source=chapter8/cleanup.sh
source "${LFS}"/sources/chapter8/cleanup.sh
+ # shellcheck source=chapter8/backup.sh
source "${LFS}"/sources/chapter8/backup.sh
else
exit "$retval"