Skip to content

Commit badcceb

Browse files
committed
Missing swoole onto php 7.*
1 parent 1959baa commit badcceb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

extensions/core/docker-install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -e
43
set -ex
54

65
if [ -n "$DEV_DEPENDENCIES" ] || [ -n "$DEPENDENCIES" ]; then

extensions/core/swoole/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
set -e
5-
if [[ "${PHP_VERSION}" ~= "^7" ]]; then
5+
if [[ "${PHP_VERSION}" =~ ^7 ]]; then
66
if [[ "${TARGETARCH}" == "arm64" ]]; then
77
# It's too long to compile onto arm64 arch
88
>&2 echo "php-swoole is not included with arm64 version (because build time is too long)"

0 commit comments

Comments
 (0)