Skip to content

Commit

Permalink
Merge pull request #766 from GrahamCampbell/patch-1
Browse files Browse the repository at this point in the history
Use sqlsvr 5.11.1 on PHP 8
  • Loading branch information
shivammathur authored Sep 9, 2023
2 parents 321f8d7 + a9a661c commit 5aa416d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scripts/extensions/sqlsrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
get_sqlsrv_version() {
if [[ "${version:?}" =~ 7.[0-3] ]]; then
echo '5.9.0'
else
elif [[ "${version:?}" =~ 7.4 ]]; then
echo '5.10.1'
else
echo '5.11.1'
fi
}

Expand Down

0 comments on commit 5aa416d

Please sign in to comment.