require grav 1.7.50

Signed-off-by: Andy Miller <rhuk@mac.com>
This commit is contained in:
Andy Miller
2025-10-15 20:55:50 -06:00
parent 44f90cbce0
commit bb5cdad333

View File

@@ -47,8 +47,8 @@ final class Install
'grav' => [
'name' => 'Grav',
'versions' => [
'1.6' => '1.6.0',
'' => '1.6.28'
'1.7' => '1.7.50',
'' => '1.7.50'
]
],
'plugins' => [
@@ -171,11 +171,11 @@ final class Install
if (\defined('GRAV_CLI') && GRAV_CLI) {
$errors = "\n\n" . strip_tags($errors) . "\n\n";
$errors .= <<<ERR
Please install Grav 1.6.31 first by running following commands:
Please install Grav 1.7.50 first by running following commands:
wget -q https://getgrav.org/download/core/grav-update/1.6.31 -O tmp/grav-update-v1.6.31.zip
bin/gpm direct-install -y tmp/grav-update-v1.6.31.zip
rm tmp/grav-update.zip
wget -q https://getgrav.org/download/core/grav-update/1.7.50 -O tmp/grav-update-v1.7.50.zip
bin/gpm direct-install -y tmp/grav-update-v1.7.50.zip
rm tmp/grav-update-v1.7.50.zip
ERR;
}