mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
16 lines
328 B
Bash
Executable File
16 lines
328 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 \
|
|
vendor/zstd
|
|
echo "-> $out"
|