File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
.github/scripts/download-bundled Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22set -ex
3+ cd " $( dirname " $0 " ) /../../.."
34
45commit=b2bd4254b379b9d7dc9a3dda060a7e27009ccdff # 10.46 release
56
67git clone --recurse-submodules --revision=$commit https://github.com/PCRE2Project/pcre2.git /tmp/php-src-bundled/pcre2
78
8- cd /tmp/php-src-bundled/pcre2
9- ./autogen.sh
10- ./configure
11-
12- cd " $( dirname " $0 " ) /../../.."
9+ (cd /tmp/php-src-bundled/pcre2 && ./autogen.sh)
10+ (cd /tmp/php-src-bundled/pcre2 && ./configure)
1311
1412rm -rf ext/pcre/pcre2lib
1513cp -R /tmp/php-src-bundled/pcre2/src ext/pcre/pcre2lib
Original file line number Diff line number Diff line change 11#! /bin/sh
22set -e
3+ cd " $( dirname " $0 " ) /../../.."
34
4- cd " $( dirname " $0 " ) /../../../ $ 1"
5+ cd " $1 "
56
67git add . -N && git diff --cached -a --exit-code . && git diff -a --exit-code .
You can’t perform that action at this time.
0 commit comments