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 e474033 Don't display skipped entries
e474033 is described below
commit e47403361a1f00485e9e51cc0213df8c18a12ed1
Author: Sebb <[email protected]>
AuthorDate: Sat Jul 18 17:38:37 2020 +0100
Don't display skipped entries
---
Rakefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Rakefile b/Rakefile
index 0a27eb3..b6c397b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -129,11 +129,11 @@ namespace :svn do
mkdir_p? File.dirname(svn)
Dir.chdir File.dirname(svn) do
svnrepos.each do |name, description|
- puts
- puts File.join(Dir.pwd, name)
# skip the update unless it matches the parameter provided
# 'skip' is special and means update all list files
next unless name == arg1 || arg1 == 'skip' || arg1 == ''
+ puts
+ puts File.join(Dir.pwd, name)
if description['list']
puts "#{PREFIX} Updating listing file"
old,new = ASF::SVN.updatelisting(name,nil,nil,description['dates'])