mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
Fix the following apt-get update issue with ondrej/php PPA repo: Repository 'https://ppa.launchpadcontent.net/ondrej/php/ubuntu noble InRelease' changed its 'Label' value from '***** The main PPA for supported PHP versions with many PECL extensions *****' to 'PPA for PHP' Alternative fix might be: sudo apt update && sudo apt full-upgrade -y PHPBB-17504
14 lines
365 B
Bash
Executable file
14 lines
365 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# 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
|
|
|
|
sudo apt-get update --allow-releaseinfo-change
|
|
sudo apt-get install -y expect-dev
|