Skip to content

Commit 58944fc

Browse files
committed
Fix issues_to_be_moved.sh script
Need to filter out the new text printed to stdout.
1 parent 1422ed0 commit 58944fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/issues_to_be_moved.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fi
7777
# Find list of issue numbers for each status
7878
for st in "${statuses[@]}"
7979
do
80-
issues[$st]=$(bin/list_issues "$st" | sort -n)
80+
issues[$st]=$(bin/list_issues "$st" | grep -v "Reading section-tag index" | sort -n)
8181
anchors[$st]=$(echo $st | LANG=C tr 'A-Z ' 'a-z_')
8282
done
8383

0 commit comments

Comments
 (0)