This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 4b6a70c5 Ensure list is sorted initially
4b6a70c5 is described below
commit 4b6a70c56fcb03f0c4c4b9f922be77f325134ec2
Author: Sebb <[email protected]>
AuthorDate: Tue Apr 4 11:37:09 2023 +0100
Ensure list is sorted initially
---
tools/site-scan.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/site-scan.rb b/tools/site-scan.rb
index 90d04619..bdac6971 100755
--- a/tools/site-scan.rb
+++ b/tools/site-scan.rb
@@ -253,7 +253,7 @@ else
end
# Scan podlings that have a website
- ASF::Podling.list.each do |podling|
+ ASF::Podling.list.sort_by(&:name).each do |podling|
if podling.status == 'current' and podling.podlingStatus[:website]
# if more parameters specified, parse only those names
if ARGV.length > 0