We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f68d0 commit a2382e8Copy full SHA for a2382e8
1 file changed
install-extensions.sh
@@ -42,10 +42,10 @@ install_tideways_xhprof() {
42
local zts
43
44
curl -fL -o "$tar" "$url"
45
- tar -xvf "$tar"
+ tar -xvf "$tar" -C vendor/tideways_xhprof
46
47
zts=$(php --version | grep -q ZTS && echo -zts || :)
48
- library="$PWD/tideways_xhprof-$version/tideways_xhprof-$PHP_VERSION$zts.so"
+ library="$PWD/vendor/tideways_xhprof/tideways_xhprof-$version/tideways_xhprof-$PHP_VERSION$zts.so"
49
config="/etc/php/$PHP_VERSION/cli/conf.d/10-tideways_xhprof.ini"
50
test -f "$library" || die "Extension not available: $library"
51
echo "extension=$library" > "$config"
0 commit comments