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 571e614 commit 4bf1b36Copy full SHA for 4bf1b36
.github/workflows/check-files.yml
@@ -96,8 +96,8 @@ jobs:
96
97
# Additional checks for binary files and large files
98
if [[ -f "$file" ]]; then
99
- # Check if file is binary
100
- if file "$file" | grep -q "binary\|executable\|archive\|compressed"; then
+ # Check if file is binary (but allow .sh files even if executable)
+ if [[ "$extension" != "sh" ]] && file "$file" | grep -q "binary\|executable\|archive\|compressed"; then
101
should_be_in_blob_store=true
102
fi
103
.github/workflows/disallowed-extensions.txt
@@ -53,7 +53,6 @@ aac
53
rpm
54
deb
55
msi
56
-pkg
57
dmg
58
iso
59
0 commit comments