Skip to content

Commit b39c39f

Browse files
committed
fix: add ShellCheck disable directive for sourced file
- Add 'shellcheck disable=SC1091' directive before sourcing ratos-common.sh - Suppresses warning about not following sourced files - Placed immediately before the source command as per ShellCheck best practices - Maintains code quality while acknowledging intentional sourcing pattern
1 parent 41b2600 commit b39c39f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

configuration/scripts/klipper-fork-migration.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ if [ ! -f "$SCRIPT_DIR/ratos-common.sh" ]; then
1010
echo "ERROR: ratos-common.sh not found in $SCRIPT_DIR"
1111
exit 1
1212
fi
13+
# shellcheck disable=SC1091
1314
source "$SCRIPT_DIR"/ratos-common.sh
1415

1516
# Constants

0 commit comments

Comments
 (0)