ingore character case for tags
authorMoritz Warning <moritzwarning@web.de>
Fri, 21 Feb 2020 19:27:25 +0000 (20:27 +0100)
committerMoritz Warning <moritzwarning@web.de>
Fri, 21 Feb 2020 19:27:25 +0000 (20:27 +0100)
index.js

index a312d75459ec047266eae614019ce224ba8e2085..38a0bb8b3957c9e5cf1d92e10703fc078a390761 100644 (file)
--- a/index.js
+++ b/index.js
@@ -370,8 +370,8 @@ function updateImages(version, commit, model, url, mobj, is_custom) {
 
     function extractTags(prefix, image) {
       var all = image.substring(prefix.length).split('.')[0].split('-');
-      var ignore = ['', 'kernel', 'zImage', 'uImage', 'factory', 'sysupgrade', 'rootfs', 'sdcard'];
-      return all.filter(function (el) { return !ignore.includes(el); });
+      var ignore = ['', 'kernel', 'zimage', 'uimage', 'factory', 'sysupgrade', 'rootfs', 'sdcard'];
+      return all.filter(function (el) { return !ignore.includes(el.toLowerCase()); });
     }
 
     for (var category in entries) {