mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update Installer.php
This commit is contained in:
parent
097a04edc3
commit
b8526bfeb0
1 changed files with 3 additions and 3 deletions
|
@ -154,7 +154,7 @@ class Installer extends Command
|
|||
protected function checkPHPOptionalDependencies()
|
||||
{
|
||||
$this->line(' ');
|
||||
$this->info('Checking For Additional PHP Extensions...');
|
||||
$this->info('Checking For Optional PHP Extensions...');
|
||||
|
||||
$extensions = [
|
||||
'gd',
|
||||
|
@ -176,7 +176,7 @@ class Installer extends Command
|
|||
protected function checkFFmpegDependencies()
|
||||
{
|
||||
$this->line(' ');
|
||||
$this->info('Checking for required FFmpeg dependencies...');
|
||||
$this->info('Checking for Required FFmpeg dependencies...');
|
||||
|
||||
$ffmpeg = exec('which ffmpeg');
|
||||
if(empty($ffmpeg)) {
|
||||
|
@ -190,7 +190,7 @@ class Installer extends Command
|
|||
protected function checkOptimiseDependencies()
|
||||
{
|
||||
$this->line(' ');
|
||||
$this->info('Checking for optional Media Optimisation dependencies...');
|
||||
$this->info('Checking for Optional Media Optimisation dependencies...');
|
||||
|
||||
$dependencies = [
|
||||
'jpegoptim',
|
||||
|
|
Loading…
Reference in a new issue