aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-06 05:37:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-06 05:37:14 +0000
commit86d41ad0c12e7855ea031e9f14a44d48d103de8b (patch)
treec026d900c6ebfd38aa5321d46186f4bdaeff5981 /tool
parent4887363ca0cdebabdf565870cf1c3648a833f01b (diff)
downloadruby-86d41ad0c12e7855ea031e9f14a44d48d103de8b.tar.gz
update-deps: exclude timestamps
* tool/update-deps (concentrate): exclude timestamps for directories. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/update-deps2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/update-deps b/tool/update-deps
index efd556aebe..c308f35195 100755
--- a/tool/update-deps
+++ b/tool/update-deps
@@ -397,6 +397,8 @@ def concentrate(dependencies, cwd)
if %r{\A\.\.(/|\z)} =~ s.to_s
warn "warning: out of tree source: #{s}"
true
+ elsif %r{/\.time\z} =~ s.to_s
+ true
else
false
end