diff options
author | Hans Hagen <pragma@wxs.nl> | 2005-08-01 00:00:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2005-08-01 00:00:00 +0200 |
commit | 93e39d7f325f2c6b36851eb87afdce0c902b3078 (patch) | |
tree | 4418ebe86a5f2b0e8858ce6fb470c008cfb6f971 /scripts | |
parent | 6e23192a09974741e5cd1f11828fb264657835f9 (diff) | |
download | context-93e39d7f325f2c6b36851eb87afdce0c902b3078.tar.gz |
stable 2005.08.01
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/context/ruby/textools.rb | 6 |
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 |