Skip to content

Commit 38f98e4

Browse files
committed
Merge remote-tracking branch 'origin/main' into bump-to-v132
2 parents b041293 + 75f78e8 commit 38f98e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include extension-ci-tools/makefiles/duckdb_extension.Makefile
1010

1111
# Setup the sqlite3 tpch database
1212
data/db/tpch.db: release
13-
command -v sqlite3 || (command -v brew && brew install sqlite) || (command -v choco && choco install sqlite -y) || (command -v apt-get && apt-get install -y sqlite3) || (command -v apk && apk add sqlite) || echo "no sqlite3"
13+
command -v sqlite3 || (command -v brew && brew install sqlite) || (command -v choco && choco install sqlite -y) || (command -v apt-get && apt-get install -y sqlite3) || (command -v yum && yum install -y sqlite) || (command -v apk && apk add sqlite) || echo "no sqlite3"
1414
./build/release/$(DUCKDB_PATH) < data/sql/tpch-export.duckdb || tree ./build/release || echo "neither tree not duck"
1515
sqlite3 data/db/tpch.db < data/sql/tpch-create.sqlite
1616

0 commit comments

Comments
 (0)