mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 03:48:56 +00:00
* build:(landing) automated website build
* Revert "build:(landing) automated website build"
This reverts commit ddee8485fd.
* benchmarks(sqlite): fix invalid northwind database url
Co-authored-by: xHyroM <xHyroM@users.noreply.github.com>
17 lines
378 B
Bash
17 lines
378 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if [ -f src/northwind.sqlite ]; then
|
|
exit 0
|
|
fi
|
|
|
|
curl -LJO https://raw.githubusercontent.com/jpwhite3/northwind-SQLite3/46d5f8a64f396f87cd374d1600dbf521523980e8/Northwind_large.sqlite.zip
|
|
|
|
unzip Northwind_large.sqlite.zip
|
|
|
|
rm Northwind_large.sqlite.zip
|
|
mv Northwind_large.sqlite src/northwind.sqlite
|
|
|
|
rm -rf __MACOSX
|
|
rm -rf Northwind* || echo ""
|