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 88c22c29 Add times to log output
88c22c29 is described below
commit 88c22c2993df9cacd23d5e5a4494dc7dae685d04
Author: Sebb <[email protected]>
AuthorDate: Wed Jul 30 15:41:05 2025 +0100
Add times to log output
---
Rakefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Rakefile b/Rakefile
index 03ac09c7..b74e336f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -156,6 +156,7 @@ namespace :svn do
if svn.instance_of? String and svn.end_with? '/*'
mkdir_p? File.dirname(svn)
Dir.chdir File.dirname(svn) do
+ puts "#{PREFIX} Start #{Time.now}"
svnrepos.each do |name, description|
# skip the update unless it matches the parameter (if any) provided
# 'skip' is special and means update all list files
@@ -265,6 +266,7 @@ namespace :svn do
puts "Missing: #{path}" unless File.exist? path
end
end
+ puts "#{PREFIX} Finish #{Time.now}"
end
end
end