Skip to content

Commit 9d50c57

Browse files
committed
chore: fix typo in variable name
Correction for 582cfb3 commit. Part of #1610
1 parent ece8cdb commit 9d50c57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/todos-extract-from-code.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ jobs:
129129
if: env.PUZZLES_FILES_MODIFIED == 'no'
130130
working-directory: generated-todos
131131
run: |
132-
NEW_PIZZLES="$(comm -23 <(cut -d$'\t' -f1 todos-in-code.tsv | sort) <(cut -d$'\t' -f1 todos-on-github.tsv | sort))"
133-
if [ -n "$NEW_PIZZLES" ]; then
132+
NEW_PUZZLES="$(comm -23 <(cut -d$'\t' -f1 todos-in-code.tsv | sort) <(cut -d$'\t' -f1 todos-on-github.tsv | sort))"
133+
if [ -n "$NEW_PUZZLES" ]; then
134134
echo "Found puzzles without related issues:"
135135
echo "$NEW_PUZZLES" | while read PUZZLE_ID; do
136136
grep "$PUZZLE_ID" todos-in-code.tsv | IFS=$'\t' read SKIP_PUZZLE_ID TICKET TITLE REST

0 commit comments

Comments
 (0)