summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2005-08-01 00:00:00 +0200
committerHans Hagen <pragma@wxs.nl>2005-08-01 00:00:00 +0200
commit93e39d7f325f2c6b36851eb87afdce0c902b3078 (patch)
tree4418ebe86a5f2b0e8858ce6fb470c008cfb6f971 /scripts
parent6e23192a09974741e5cd1f11828fb264657835f9 (diff)
downloadcontext-93e39d7f325f2c6b36851eb87afdce0c902b3078.tar.gz
stable 2005.08.01
Diffstat (limited to 'scripts')
-rw-r--r--scripts/context/ruby/textools.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/context/ruby/textools.rb b/scripts/context/ruby/textools.rb
index c524ffa41..50b72241a 100644
--- a/scripts/context/ruby/textools.rb
+++ b/scripts/context/ruby/textools.rb
@@ -797,7 +797,7 @@ class Commands
donehash[File.dirname(r)] = File.dirname(p)
end
else
- report("skipping '#{r}' to '#{p}'")
+ report("not merging '#{r}'")
end
elsif nocheck or File.mtime(p) < File.mtime(r) then
report("updating '#{r}' to '#{p}'")
@@ -810,7 +810,9 @@ class Commands
donehash[File.dirname(r)] = File.dirname(p)
end
else
- report("skipping '#{r}' to '#{p}'")
+ report("not updating '#{r}'")
+ report("old > #{File.mtime(p)}")
+ report("new > #{File.mtime(r)}")
end
end
end