We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ff080 commit 798b74fCopy full SHA for 798b74f
.github/workflows/check-files.yml
@@ -97,7 +97,7 @@ jobs:
97
# Additional checks for binary files and large files
98
if [[ -f "$file" ]]; then
99
# Check if file is binary (but allow .sh files even if executable)
100
- if [[ "$extension" != "sh" ]] && file "$file" | grep -q "binary\|executable\|archive\|compressed"; then
+ if file "$file" | grep -q "binary\|archive\|compressed"; then
101
should_be_in_blob_store=true
102
fi
103
0 commit comments