Files
bun.sh/bench/sqlite/src/download.sh
Hyro 5bca8a1d47 benchmarks(sqlite): invalid northwind database url (#989)
* 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>
2022-08-05 10:36:32 -07:00

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 ""