aboutsummaryrefslogtreecommitdiffstats
path: root/tool/vcs.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-23 02:11:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-23 02:11:02 +0000
commit1318ed3931df4113a2621b26492a3a4d8bbd83be (patch)
tree628ae10ec53ee84cb1d24b8eb15f32ce23767343 /tool/vcs.rb
parenta80f7f057a22ba36ceb8f6317c674adfdcfdface (diff)
downloadruby-1318ed3931df4113a2621b26492a3a4d8bbd83be.tar.gz
vcs.rb: fix after_export
* tool/vcs.rb (VCS#after_export): fix nesting. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/vcs.rb')
-rw-r--r--tool/vcs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index af1461d405..0a59f43608 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -128,9 +128,9 @@ class VCS
else
'.'
end
+ end
- def after_export(dir)
- end
+ def after_export(dir)
end
class SVN < self