From 43848435ddc78601378c19c44652c3cfc8cd666e Mon Sep 17 00:00:00 2001 From: padthaitofuhot Date: Mon, 16 Sep 2024 14:24:25 -0400 Subject: [PATCH] Shellcheck can't understand traps :( --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 0b3e94e..af66245 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -18,8 +18,11 @@ quit() { } trap_handler() { + # shellcheck disable=SC2317 printf '\n' + # shellcheck disable=SC2317 o "Signal caught..." + # shellcheck disable=SC2317 quit }