From c9c72ef29dee9e032b710c9fdb3c5c09b63e5de8 Mon Sep 17 00:00:00 2001 From: sneak Date: Fri, 7 Aug 2026 16:29:45 +0000 Subject: [PATCH] script/bootstrap: install sqlite3, which the test suite shells out to --- script/bootstrap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/bootstrap b/script/bootstrap index 3a156e5..94f46fc 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -65,6 +65,9 @@ main() { pkg_install golangci-lint golangci-lint golangci-lint golangci-lint fi + # sqlite3 CLI: the test suite shells out to it (VACUUM). + if missing sqlite3; then pkg_install sqlite sqlite3 sqlite sqlite; fi + go mod download echo "bootstrap complete"