Skip to content

Commit 76265d8

Browse files
committed
style: Fix shellCheck violation
1 parent b0255ae commit 76265d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/check-incomplete-sentences.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ scan_pattern() {
4848
echo -e "${YELLOW}Checking: ${description}${NC}"
4949

5050
# Use a temp file for results to avoid subshell issues
51-
local temp_results=$(mktemp)
51+
local temp_results
52+
temp_results=$(mktemp)
5253

5354
# Build and execute grep command
5455
if [[ -n "$exclude_pattern" ]]; then

0 commit comments

Comments
 (0)