Skip to content

Commit 506f7cd

Browse files
committed
Increase threshold for "big" files to 1MB.
1 parent 923e5bf commit 506f7cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate_datasets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
if: "matrix.bids-validator == 'stable'"
9696
run: |
9797
echo "Checking for big files ..."
98-
found=`find . -not -path "./.git*" -type f -size +500k`
98+
found=`find . -not -path "./.git*" -type f -size +1M`
9999
if [ "$found" == "" ]
100100
then
101101
echo "No big files present, great!"

0 commit comments

Comments
 (0)