Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/scripts/check_doc_references.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ while IFS= read -r ref_file; do
while IFS='|' read -r src_file doc_file; do
if [[ "$src_file" == "$ref_file" ]]; then
# Store in associative array (append to existing value if key exists)
if [[ -n "${FILE_TO_DOCS_MAP[$ref_file]}" ]]; then
if [[ -n "${FILE_TO_DOCS_MAP[$ref_file]:-}" ]]; then
FILE_TO_DOCS_MAP[$ref_file]="${FILE_TO_DOCS_MAP[$ref_file]}|${doc_file}"
else
FILE_TO_DOCS_MAP[$ref_file]="$doc_file"
Expand Down
Loading