mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* fix(win/upgrade): do not show powershell expand-archive info while upgrading * start working bun run * experiment: `bun.new` * you can now bun run * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * Update src/install/install.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * stuff * fix stuff * fix this * farther but not really * sadfs * path hell not sure how much worse or better this makes things. its a mess. windows path handlign is a mess aaaaaaaaaaaaaaaa * path.resolve bs * remove old build system stuff from pr * a * fix some path.parse/join cases * path closer not perfect * normalize and join tests tests done * paths * implement path.relative * , * stuff * assert * fix compile * hate * the code isnt great * stuff * housekeeping for build system * blah * explain windows sitaution in docs * some progress? not much though * zig compiler crashes here * fix * yippee * ok * a * ala wala * fix builds on stuff * clean * the tests now run * a * aa * dedupe uv event loop * fix fs test accuracy * stuff * [autofix.ci] apply automated fixes * huge updat e * [autofix.ci] apply automated fixes * url * [autofix.ci] apply automated fixes * start windows spawnSync * [autofix.ci] apply automated fixes * add --webkit for update submodules * add better err message for `bun setup` * fix unix platform build * . * [autofix.ci] apply automated fixes * un-upgrade libarchive * z * asdfghj * wrk * todo -> panic * ok * a * [autofix.ci] apply automated fixes * fix build scripts l ol * dfghj * fa * [autofix.ci] apply automated fixes * aaaa * a * l * [autofix.ci] apply automated fixes * more logs * [autofix.ci] apply automated fixes * j * fix init_command * CORE DUMP HELL * i swear im being pranked by the github actions gods * fadsjkfdshjkhjkdfsahjkdfshjksdafjkhhjkfdsahfsdkjhfsdjkahf * thanks IAS * this is the correct fix * personal review * ddisablbe these * revisions! * ok * fix submodule * stuff * fix libarchive * [autofix.ci] apply automated fixes * stuff * [autofix.ci] apply automated fixes * a * fix addressToJS on windows * make dns async again * dx: add flag to update submodules ps1 to clone webkit * dns error case for libuv * dx improvements on windows * newline * obvious fix * install steps * extra note * fix fs test * Update building-windows.md * fix builtins bundler to support \r\n line endnigs * better * some windows stuff * a * a * a * aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa * [autofix.ci] apply automated fixes * bunfile text works * fix build on the mac * hellooooooooooo * install steps * ci for baseline? * fix * aaa * wow * install script revamp * bug * OK * ok * aaaaaaaaaaaaaa * okay * fix the node test runner lol * fix napi stuff --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: cirospaciari <ciro.spaciai@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com>
58 lines
1.0 KiB
Bash
58 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
OUTDIR="$1"
|
|
TAG="$2"
|
|
PKG="$3"
|
|
|
|
if [ -z "$OUTDIR" ]; then
|
|
echo "Missing outdir"
|
|
exit 1
|
|
fi
|
|
if [ -z "$TAG" ]; then
|
|
echo "Missing tag"
|
|
exit 1
|
|
fi
|
|
if [ -z "$PKG" ]; then
|
|
echo "Missing package"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
url="https://github.com/oven-sh/WebKit/releases/download/autobuild-$TAG/$PKG.tar.gz"
|
|
|
|
old_tar_dir="$(dirname "$0")/../.webkit-cache"
|
|
tar_dir="$(dirname "$0")/../.cache"
|
|
if [ -d "$old_tar_dir" ]; then
|
|
# migration step from the old system
|
|
mkdir "$tar_dir"
|
|
mv "$old_tar_dir"/* "$tar_dir"
|
|
rm -r "$old_tar_dir"
|
|
fi
|
|
|
|
tar="$tar_dir/$PKG-$TAG.tar.gz"
|
|
|
|
mkdir -p "$OUTDIR"
|
|
mkdir -p "$tar_dir"
|
|
|
|
if [ -f "$OUTDIR/.tag" ]; then
|
|
read_tag="$(cat "$OUTDIR/.tag")"
|
|
if [ "$read_tag" == "$TAG-$PKG" ]; then
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
rm -rf "$OUTDIR"
|
|
|
|
if [ ! -f "$tar" ]; then
|
|
echo "-- Downloading WebKit"
|
|
if ! curl -o "$tar" -L "$url"; then
|
|
echo "Failed to download $url"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
tar -xzf "$tar" -C "$(dirname "$OUTDIR")" || (rm "$tar" && exit 1)
|
|
|
|
echo "$TAG-$PKG" > "$OUTDIR/.tag"
|