From a8328172e6ac054dc6568f930fb7ae2a4a94997c Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 7 Dec 2024 15:16:46 -0500 Subject: [PATCH] Allow force_update to be seperate from --update --- update_cli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_cli.php b/update_cli.php index 5291be15..fd39a511 100644 --- a/update_cli.php +++ b/update_cli.php @@ -30,7 +30,7 @@ if (count($options) === 0) { } // If "update" is requested -if (isset($options['update'])) { +if (isset($options['update']) || isset($options['force_update'])) { // If "force_update" is requested, do a hard reset, otherwise just pull if (isset($options['force_update'])) {