Skip to content

Commit

Permalink
Remove hardcoded latest version for sqlsrv and pdo_sqlsrv
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Sep 9, 2023
1 parent 5aa416d commit 04c15e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/extensions/sqlsrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ get_sqlsrv_version() {
elif [[ "${version:?}" =~ 7.4 ]]; then
echo '5.10.1'
else
echo '5.11.1'
# Return an empty string so that pecl will install the latest version.
echo ''
fi
}

Expand Down

0 comments on commit 04c15e2

Please sign in to comment.