diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-08 18:50:46 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-08 18:50:46 -0500 |
commit | 9da9daf92dd8abf6793276d0e0d8b347948914e5 (patch) | |
tree | 128488c143f83f5dbf4a731e4d7cc28fd4a9a8c3 /chapter7/backup.sh | |
parent | e7a38788125880c6817ea63f300c0575d456cdbc (diff) |
Add shellcheck directives.
Diffstat (limited to 'chapter7/backup.sh')
-rw-r--r-- | chapter7/backup.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chapter7/backup.sh b/chapter7/backup.sh index 7cfb29f..38d626f 100644 --- a/chapter7/backup.sh +++ b/chapter7/backup.sh @@ -9,6 +9,7 @@ else printf "%b" "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${file}${RST}... " pushd "${LFS}" > /dev/null || exit 1 + # shellcheck disable=SC2024 sudo XZ_OPTS="-T${NUMPROCS} -e" tar cJvpf "${HOME}"/"${file}" "${directories[@]}" >"${LFS}"/sources/log/chapter7/backup.log 2>&1 & pid=$! spinner "$pid" "${SPINNER}" retval=$? @@ -16,6 +17,7 @@ else printf "%b" "${IRED}FAILED!${RST}\n" exit "${retval}" else + # shellcheck disable=SC2024 sudo chown -v "${USER}":"$(id -g)" "${HOME}"/"${file}" >"${LFS}"/sources/log/chapter7/backup.log 2>&1 printf "%b" "${IGRN}OK${RST}\n" fi |