Browse Source

limit sync count

ruki 1 year ago
parent
commit
5264d5341f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/build_artifacts.lua

+ 1 - 1
scripts/build_artifacts.lua

@@ -145,7 +145,7 @@ function _get_packagerefs_in_latest_24h()
     end
     local result = {}
     for _, packageref in packagerefs:keys() do
-        if #result < 64 then
+        if #result < 24 then
             table.insert(result, packageref)
         end
     end