Archived
d3495476f4
El SDK Release / build-and-release (push) Failing after 13m0s
The generated C, amalgams, vendored runtime pins, and compiled binaries from the Claude Code era are removed from the worktree. The El sources survive; this tree is now source-only for the first-principles rebuild. Per Principal direction 2026-08-19.
2 lines
316 B
Batchfile
2 lines
316 B
Batchfile
awk { l=$0; sub(/^[ \t]+/,"",l); if (l=="") blank++; else if (substr(l,1,2)=="//") comment++; else code++ } END { printf "file=%s\ntotal_lines=%d\ncode=%d\ncomment=%d\nblank=%d\ncode_pct=%.1f%%\ncomment_pct=%.1f%%\n", FILENAME, NR, code, comment, blank, 100*code/NR, 100*comment/NR } lang/el-compiler/src/codegen.el
|