mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-16 13:48:58 +01:00
8c334f0c10
PHPBB3-16754
28 lines
919 B
Bash
Executable File
28 lines
919 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This file is part of the phpBB Forum Software package.
|
|
#
|
|
# @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
# @license GNU General Public License, version 2 (GPL-2.0)
|
|
#
|
|
# For full copyright and license information, please see
|
|
# the docs/CREDITS.txt file.
|
|
#
|
|
set -e
|
|
|
|
if [ ! -f doctum.phar ]; then
|
|
# Download the latest (5.x.x) release if the file does not exist
|
|
# Remove it to update your phar
|
|
curl -O https://doctum.long-term.support/releases/5/doctum.phar
|
|
rm -f doctum.phar.sha256
|
|
curl -O https://doctum.long-term.support/releases/5/doctum.phar.sha256
|
|
sha256sum --strict --check doctum.phar.sha256
|
|
rm -f doctum.phar.sha256
|
|
chmod +x ./doctum.phar
|
|
# You can fetch the latest (5.x.x) version code here:
|
|
# https://doctum.long-term.support/releases/5/VERSION
|
|
fi
|
|
# Show the version to inform users of the script
|
|
./doctum.phar version --text
|
|
./doctum.phar parse build/doctum-checkout.conf.php -v
|