mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
15 lines
312 B
Bash
Executable File
15 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
if ! test -d build/debug/codegen; then
|
|
echo "Missing codegen"
|
|
exit 1
|
|
fi
|
|
|
|
out="codegen-for-zig-team.tar.gz"
|
|
tar --no-xattrs \
|
|
--exclude=".DS_Store" \
|
|
-zcf "$out" \
|
|
build/debug/codegen \
|
|
src/bun.js/bindings/GeneratedBindings.zig \
|
|
src/bun.js/bindings/GeneratedJS2Native.zig
|
|
echo "-> $out"
|