Skip to content

Commit

Permalink
chore: add dev dep sqlite binary for proj crate (#14673)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariesdevil authored Feb 18, 2024
1 parent 5b9d69d commit efa0e46
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/setup/dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -335,15 +335,18 @@ function install_sqlite3 {
case "$PACKAGE_MANAGER" in
apt-get)
install_pkg libsqlite3-dev "$PACKAGE_MANAGER"
install_pkg sqlite3 "$PACKAGE_MANAGER"
;;
pacman)
install_pkg sqlite "$PACKAGE_MANAGER"
;;
apk)
install_pkg sqlite-dev "$PACKAGE_MANAGER"
install_pkg sqlite "$PACKAGE_MANAGER"
;;
yum | dnf)
install_pkg sqlite-devel "$PACKAGE_MANAGER"
install_pkg sqlite "$PACKAGE_MANAGER"
;;
brew)
install_pkg sqlite "$PACKAGE_MANAGER"
Expand Down

0 comments on commit efa0e46

Please sign in to comment.