Skip to content

Commit 0d84f0d

Browse files
authored
Suppress new warnings from shellcheck v0.11.0 (#4207)
Shellcheck v0.11.0 added new warnings which raise false positive on the trap function in the OTA hook script. Suppress also that warning.
1 parent 3203329 commit 0d84f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildroot-external/ota/rauc-hook

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -o errexit
44

5-
# shellcheck disable=SC2317 # Being usesd in trap which shellcheck can't follow
5+
# shellcheck disable=SC2317,SC2329 # Being usesd in trap which shellcheck can't follow
66
cleanup_boot() {
77
umount "${BOOT_NEW}"
88
rm -rf "${BOOT_TMP}" "${BOOT_NEW}"

0 commit comments

Comments
 (0)