From cd9ef102d7efffb082b54199293c20ba3a1aa3ea Mon Sep 17 00:00:00 2001 From: abbodi1406 Date: Thu, 18 Feb 2021 05:45:22 +0300 Subject: [PATCH] Add support for the new SSU file name --- get.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/get.php b/get.php index 5b21736..22d4e3c 100644 --- a/get.php +++ b/get.php @@ -198,7 +198,7 @@ function uupGetFiles( switch($fileListSource) { case 'UPDATEONLY': $skipPackBuild = 1; - $removeFiles = preg_grep('/Windows10\.0-KB.*-EXPRESS/i', $filesInfoKeys); + $removeFiles = preg_grep('/Windows10\.0-KB.*-EXPRESS|SSU-\d*?\.\d*?-.{3,5}-EXPRESS/i', $filesInfoKeys); foreach($removeFiles as $val) { if(isset($filesInfoList[$val])) unset($filesInfoList[$val]); @@ -207,7 +207,7 @@ function uupGetFiles( $filesInfoKeys = array_keys($filesInfoList); - $filesInfoKeys = preg_grep('/Windows10\.0-KB/i', $filesInfoKeys); + $filesInfoKeys = preg_grep('/Windows10\.0-KB|SSU-\d*?\.\d*?-.{3,5}/i', $filesInfoKeys); if(count($filesInfoKeys) == 0) { return array('error' => 'NOT_CUMULATIVE_UPDATE'); } @@ -224,8 +224,8 @@ function uupGetFiles( if($updateSku == 135) $uupCleanFunc = 'uupCleanHolo'; if($fileListSource == 'GENERATEDPACKS') { - $temp = preg_grep('/Windows10\.0-KB.*-EXPRESS/i', $filesInfoKeys, PREG_GREP_INVERT); - $temp = preg_grep('/Windows10\.0-KB/i', $temp); + $temp = preg_grep('/Windows10\.0-KB.*-EXPRESS|SSU-\d*?\.\d*?-.{3,5}-EXPRESS/i', $filesInfoKeys, PREG_GREP_INVERT); + $temp = preg_grep('/Windows10\.0-KB|SSU-\d*?\.\d*?-.{3,5}/i', $temp); $filesPacksList = array_merge($filesPacksList, $temp); $newFiles = array();