diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-08 18:50:28 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-08 18:50:28 -0500 |
commit | e7a38788125880c6817ea63f300c0575d456cdbc (patch) | |
tree | e44f65682d95fc55ae089312c005859c3fbf10f9 | |
parent | dd8ac86ccddee8f91a47fe332991105be8d3bf8e (diff) |
Add shellcheck directives.
-rwxr-xr-x | lfs.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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" |