Ignore updates which do not have architecture and build specified

This commit is contained in:
whatever127
2019-10-25 16:44:35 +02:00
parent ccfb9c1b3e
commit 251f30406e
3 changed files with 14 additions and 13 deletions

View File

@ -16,7 +16,7 @@ limitations under the License.
*/
function uupApiVersion() {
return '1.27.1';
return '1.27.2';
}
require_once dirname(__FILE__).'/auths.php';

View File

@ -108,6 +108,10 @@ function branchFromBuild($build) {
$branch = '19h1_release';
break;
case 18363: //18363 is a fake build based on 18362
$branch = '19h1_release';
break;
default:
$branch = 'rs_prerelease';
break;