Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit ffb1590

Browse files
William Douglasbryteise
authored andcommitted
Update shellcheck exceptions
Shellcheck changed its detection for a few file sourcing errors from 1090 to 1091. Update the disables accordingly. Signed-off-by: William Douglas <[email protected]>
1 parent bf5e1f1 commit ffb1590

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/functional/check_ids.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
# shellcheck disable=SC1090
4-
# SC1090: Can't follow non-constant source. Use a directive to specify location.
3+
# shellcheck disable=SC1091
4+
# SC1091: Not following, SC couldn't follow the dynamic path
55
# We already process that file, so it's fine to ignore
66
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
77
source "$SCRIPT_PATH/../functional/testlib.bash"

test/real_content/real_content_lib.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#TODO: Add test for crossing a format barrier
44

5-
# shellcheck disable=SC1090
6-
# SC1090: Can't follow non-constant source. Use a directive to specify location.
5+
# shellcheck disable=SC1091
6+
# SC1091: Not following, SC couldn't follow the dynamic path
77
# We already process that file, so it's fine to ignore
88
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
99
source "$SCRIPT_PATH/../functional/testlib.bash"

0 commit comments

Comments
 (0)