We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9d69d commit efa0e46Copy full SHA for efa0e46
scripts/setup/dev_setup.sh
@@ -335,15 +335,18 @@ function install_sqlite3 {
335
case "$PACKAGE_MANAGER" in
336
apt-get)
337
install_pkg libsqlite3-dev "$PACKAGE_MANAGER"
338
+ install_pkg sqlite3 "$PACKAGE_MANAGER"
339
;;
340
pacman)
341
install_pkg sqlite "$PACKAGE_MANAGER"
342
343
apk)
344
install_pkg sqlite-dev "$PACKAGE_MANAGER"
345
+ install_pkg sqlite "$PACKAGE_MANAGER"
346
347
yum | dnf)
348
install_pkg sqlite-devel "$PACKAGE_MANAGER"
349
350
351
brew)
352
0 commit comments