summaryrefslogtreecommitdiff
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
commit221730b3d72df2ec9a87c5985e8ff5c8cbe407e2 (patch)
treec026d900c6ebfd38aa5321d46186f4bdaeff5981 /tool
parentfc480888a82000d144be97030334c2a8bb157acb (diff)
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