mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
11 lines
351 B
Bash
11 lines
351 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
rm -rf Northwind_large.sqlite.zip
|
|
curl -LJO https://github.com/jpwhite3/northwind-SQLite3/blob/master/Northwind_large.sqlite.zip?raw=true
|
|
unzip Northwind_large.sqlite.zip?raw=true
|
|
rm Northwind_large.sqlite.zip?raw=true
|
|
mv Northwind_large.sqlite /tmp/northwind.sqlite
|
|
rm -rf Northwind* || echo ""
|
|
rm -rf __MACOSX
|