Skip to content

Commit 5bda2de

Browse files
committed
bookworm: fix shellcheck warning
1 parent 07fd2d1 commit 5bda2de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bookworm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ blue=$(printf '\033[34m')
146146
resetline=$(printf '\r\033[K')
147147
readonly normal bold red green orange blue resetline
148148

149-
# shellcheck disable=SC2317
149+
# shellcheck disable=SC2317,SC2329
150150
function success()
151151
{
152152
local msg=${1}
@@ -159,7 +159,7 @@ function info()
159159
echo "[${bold}${blue}INFO${normal}] ${msg}" | tee -a "$YUNOHOST_LOG"
160160
}
161161

162-
# shellcheck disable=SC2317
162+
# shellcheck disable=SC2317,SC2329
163163
function warn()
164164
{
165165
local msg=${1}
@@ -179,7 +179,7 @@ function die() {
179179
}
180180

181181
trap trapint 2
182-
# shellcheck disable=SC2317
182+
# shellcheck disable=SC2317,SC2329
183183
function trapint {
184184
echo ""
185185
die "Aborted"

0 commit comments

Comments
 (0)