Skip to content

Commit c591571

Browse files
committed
Fix test changes script
1 parent 6c4666b commit c591571

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test_changes.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ fi
1212
echo "Using head reference: ${HEAD_REF}"
1313

1414
CHANGED_SCRAPERS=$(git whatchanged --name-only --pretty="" origin/main..${HEAD_REF} |
15-
grep spiders || true |
16-
grep -v helper || true |
15+
grep spiders |
16+
grep -v helper |
1717
sed 's/jedeschule\/spiders\///' |
1818
sed 's/\.py//' |
1919
sed 's/_/\-/' |
20-
uniq)
20+
uniq) || true
2121

2222
if [ -z "$CHANGED_SCRAPERS" ]; then
2323
echo "No scrapers were changed"

0 commit comments

Comments
 (0)