Skip to content

Commit

Permalink
should be AND condition not OR
Browse files Browse the repository at this point in the history
  • Loading branch information
T.J. Yang committed Nov 12, 2023
1 parent 8f0a1fd commit 3b89078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsql-server/scripts/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
rubygem-bundler \
rubygem-sqlite3 \
ruby-devel
elif [ "$ID" = "rocky" ] || [ "$VERION_ID" = "9.2" ]; then
elif [ "$ID" = "rocky" ] && [ "$VERION_ID" = "9.2" ]; then
dnf install -y \
libpq-devel \
libsqlite3x-devel \
Expand Down

0 comments on commit 3b89078

Please sign in to comment.