From d027d436cfcdc5c04d97cc3be3f58b68112e17bb Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 8 Aug 2024 00:30:56 +0700 Subject: [PATCH] Revert "Update install.php" This reverts commit af91f8aeb1919a57620714eac2e7be6da73532a6. --- install.php | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/install.php b/install.php index d95fafa91..2ca47b849 100644 --- a/install.php +++ b/install.php @@ -124,10 +124,7 @@ function chmod_r(string $dir, int $dirPermissions, int $filePermissions): void } // Welcoming message -out("---------- TorrentPier Installer ----------", 'info'); -out("Made with love for Humans!", 'info'); -out("-------------------------------------------\n", 'info'); -sleep(1); +out("- TorrentPier Installer\n", 'info'); // Setting permissions out('- Setting permissions for folders...', 'info'); @@ -135,7 +132,6 @@ chmod_r(ROOT . 'data', 0755, 0644); chmod_r(ROOT . 'internal_data', 0755, 0644); chmod_r(ROOT . 'sitemap', 0755, 0644); out("- Permissions successfully applied!\n", 'success'); -sleep(1); // Check composer installation if (!is_file(ROOT . 'vendor/autoload.php')) { @@ -169,8 +165,6 @@ if (!is_file(ROOT . 'vendor/autoload.php')) { out('- composer.phar not found', 'error'); exit; } - - sleep(1); } // Preparing ENV @@ -181,8 +175,6 @@ if (is_file(ROOT . '.env.example') && !is_file(ROOT . '.env')) { out('- Cannot create environment file', 'error'); exit; } - - sleep(1); } // Editing ENV file @@ -237,8 +229,6 @@ if (is_file(ROOT . '.env')) { out('- Cannot save environment file', 'error'); exit; } - - sleep(1); } else { out('- Environment file not found', 'error'); exit;