forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck-binaries.sh
More file actions
71 lines (64 loc) · 2.57 KB
/
Copy pathcheck-binaries.sh
File metadata and controls
71 lines (64 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env bash
# Rejects staged binary artifacts, build output, dSYM dirs, and files > 1 MB.
# Invoked by lefthook pre-commit. Lives in a standalone file so Windows Git Bash
# doesn't mangle the quoting when lefthook passes it through `sh.exe -c`.
set -eu
VIOLATIONS=0
STAGED=$(git diff --cached --name-only --diff-filter=ACM)
[ -z "$STAGED" ] && exit 0
BINARIES=$(echo "$STAGED" | grep -iE '\.(exe|dll|so|dylib|o|obj|a|lib|wasm)$' || true)
if [ -n "$BINARIES" ]; then
echo "Binary files detected:"
echo "$BINARIES"
VIOLATIONS=1
fi
BUILD=$(echo "$STAGED" | grep -E '/build/' || true)
if [ -n "$BUILD" ]; then
echo "Files in build directories:"
echo "$BUILD"
VIOLATIONS=1
fi
DSYM=$(echo "$STAGED" | grep -E '\.dSYM/' || true)
if [ -n "$DSYM" ]; then
echo "dSYM directories:"
echo "$DSYM"
VIOLATIONS=1
fi
while IFS= read -r f; do
[ -z "$f" ] && continue
[ ! -f "$f" ] && continue
# Skip lockfiles and a small set of generated data files that legitimately
# exceed 1 MB (showcase demo/search/starter content). Keeping the list
# explicit — any other file over 1 MB still gets rejected.
case "$f" in
pnpm-lock.yaml|*/package-lock.json) continue ;;
showcase/shell/src/data/demo-content.json) continue ;;
showcase/shell-docs/src/data/demo-content.json) continue ;;
showcase/shell-dojo/src/data/demo-content.json) continue ;;
showcase/shell/src/data/search-index.json) continue ;;
showcase/shell/src/data/starter-content.json) continue ;;
# shell-docs and shell-dojo mirror the same generated demo-content
# bundle as shell/ -- they're produced by the same
# `scripts/bundle-demo-content.ts` run and legitimately exceed 1 MB.
showcase/shell-docs/src/data/demo-content.json) continue ;;
showcase/shell-docs/src/data/search-index.json) continue ;;
showcase/shell-docs/src/data/starter-content.json) continue ;;
showcase/shell-dojo/src/data/demo-content.json) continue ;;
showcase/shell-dojo/src/data/search-index.json) continue ;;
showcase/shell-dojo/src/data/starter-content.json) continue ;;
esac
SIZE=$(wc -c < "$f" | tr -d ' ')
[ -z "$SIZE" ] && continue
if [ "$SIZE" -gt 1048576 ]; then
echo "Oversized file: $f ($((SIZE / 1024)) KB)"
VIOLATIONS=1
fi
done <<< "$STAGED"
# Explicit `if … then` (instead of `[ … ] && exit 1`) to avoid the brittle
# `set -e` interaction: with errexit enabled, a failing simple command as
# the penultimate line is only safe because the trailing `exit 0` follows.
# The explicit form is robust regardless of what comes after.
if [ "$VIOLATIONS" -eq 1 ]; then
exit 1
fi
exit 0