mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
8 lines
203 B
Bash
Executable File
8 lines
203 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -exo pipefail
|
|
source $(dirname -- "${BASH_SOURCE[0]}")/env.sh
|
|
|
|
cd $BUN_DEPS_DIR/lol-html/c-api
|
|
cargo build --release
|
|
cp target/release/liblolhtml.a $BUN_DEPS_OUT_DIR/liblolhtml.a
|