Skip to content

Commit

Permalink
Merge pull request #179 from devilbox/release-0.116
Browse files Browse the repository at this point in the history
Release 0.116
  • Loading branch information
cytopia authored Nov 13, 2020
2 parents 6ecd75d + cdb09fc commit add92d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
## Unreleased


## Release 0.116

#### Fixed
- [#749](https://github.com/cytopia/devilbox/issues/749) Fix to disable PHP modules without trailing `*.so` extension


## Release 0.115

#### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ disable_modules() {
mod="$( echo "${mod}" | xargs )" # trim

# Find all config files that enable that module
files="$( grep -Er "^(zend_)?extension.*(=|/)${mod}\.so" "${cfg_path}" || true )"
files="$( grep -Er "^(zend_)?extension.*(=|/)${mod}(\\.so)?\$" "${cfg_path}" || true )"

if [ -n "${files}" ]; then
while read -r f; do
Expand Down

0 comments on commit add92d6

Please sign in to comment.