Skip to content

Commit

Permalink
ci: allow for testfiles to be deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Sep 17, 2024
1 parent dc346c3 commit da25a61
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ for FILE in $CHANGED_FILES; do
echo "skipping $FILE"
continue
fi
if [ ! -e "$FILE" ] ; then
echo "skipping $FILE since it was deleted"
continue
fi

# Get the diff for the file.
DIFF=$(git diff origin/develop...HEAD --unified=0 -- "$FILE")
Expand Down

0 comments on commit da25a61

Please sign in to comment.