You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/php_api_ref/phpdoc.sh
+23-8Lines changed: 23 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ PHPDOC_DIR="$(pwd)/tools/php_api_ref/.phpdoc"; # Absolute path to phpDocumentor
18
18
PHP_BINARY="php -d error_reporting=`php -r 'echo E_ALL & ~E_DEPRECATED;'`";# Avoid depreciation messages from phpDocumentor/Reflection/issues/529 when using PHP 8.2 or higher
19
19
TMP_DXP_DIR=/tmp/ibexa-dxp-phpdoc;# Absolute path of the temporary directory in which Ibexa DXP will be installed and the PHP API Reference built
20
20
FORCE_DXP_INSTALL=1;# If 1, empty the temporary directory, install DXP from scratch, build, remove temporary directory; if 0, potentially reuse the DXP already installed in temporary directory, keep temporary directory for future uses.
21
+
BASE_DXP_BRANCH='';# Branch from and for which the Reference is built when using a dev branch as version
22
+
VIRTUAL_DXP_VERSION='';# Version for which the reference is supposedly built when using dev branch as version
21
23
22
24
if [ !-d$OUTPUT_DIR ];then
23
25
echo -n "Creating ${OUTPUT_DIR}… ";
@@ -49,9 +51,18 @@ cd $TMP_DXP_DIR; # /!\ Change working directory (reason why all paths must be ab
49
51
50
52
if [ 0 -eq$DXP_ALREADY_EXISTS ];then
51
53
echo"Creating ibexa/$DXP_EDITION-skeleton:$DXP_VERSION project in ${TMP_DXP_DIR}…";
0 commit comments