Skip to content

Commit

Permalink
fix(installer): do not enforce php 8.2 zts binaries (#647)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZNeumann authored Mar 22, 2023
1 parent 839e2c3 commit c343ea4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion agent/newrelic-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,11 @@ check_file "${ilibdir}/scripts/newrelic.ini.template"
for pmv in "20121212" "20131226" "20151012" "20160303" "20170718" \
"20180731" "20190902" "20200930" "20210902" "20220829"; do
check_file "${ilibdir}/agent/${arch}/newrelic-${pmv}.so"
# remove following line when ZTS removed from releases
done
# remove following lines when ZTS removed from releases
# 8.2 does not ship with zts
for pmv in "20121212" "20131226" "20151012" "20160303" "20170718" \
"20180731" "20190902" "20200930" "20210902"; do
check_file "${ilibdir}/agent/${arch}/newrelic-${pmv}-zts.so"
done

Expand Down

0 comments on commit c343ea4

Please sign in to comment.