wrap install php-extensions

This commit is contained in:
2025-01-25 18:55:11 +01:00
parent 7294bea07d
commit c5cb38dfe8
2 changed files with 22 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
echo "Installing $@"
/sbin/install-php-extensions $@ > /tmp/build.log
RETCODE=$?
if [ $RETCODE -ne 0 ]; then
tail -n 500 /tmp/build.log
fi
exit $RETCODE