Skip to content

Commit 59299f5

Browse files
committed
ci: fix newest ShellCheck warnings
Signed-off-by: Adrian Reber <[email protected]>
1 parent cd926d1 commit 59299f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

misc/check_for_package_updates.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ OUTPUT_FORMAT="table"
2525
NO_GLOW=0
2626

2727
# Cleanup function
28+
# shellcheck disable=SC2329
2829
cleanup() {
29-
# shellcheck disable=SC2317
3030
rm -rf "${TEMP_DIR}"
3131
}
3232
trap cleanup EXIT
3333

3434
# Logging functions
35+
# shellcheck disable=SC2329
3536
log() {
36-
# shellcheck disable=SC2317
3737
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*" >&2
3838
}
3939

@@ -49,8 +49,8 @@ log_info() {
4949
echo -e "${BLUE}[INFO]${NC} $*" >&2
5050
}
5151

52+
# shellcheck disable=SC2329
5253
log_success() {
53-
# shellcheck disable=SC2317
5454
echo -e "${GREEN}[SUCCESS]${NC} $*" >&2
5555
}
5656

0 commit comments

Comments
 (0)