summaryrefslogtreecommitdiffstats
path: root/tool/file2lastrev.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-23 06:49:39 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-23 06:49:39 +0000
commitf173069a59389774ad06d9f4ee8395584cec5b3a (patch)
tree74c83500bffa65a6fdc768f2677b46a4ac0c5738 /tool/file2lastrev.rb
parent916d811c9c3c471b6753baf8d6c0a6e42ae10f6f (diff)
downloadruby-f173069a59389774ad06d9f4ee8395584cec5b3a.tar.gz
ruby-f173069a59389774ad06d9f4ee8395584cec5b3a.tar.xz
ruby-f173069a59389774ad06d9f4ee8395584cec5b3a.zip
* tool/file2lastrev.rb: shouldn't use single quote in shell's command
line if you want to support Windows. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/file2lastrev.rb')
-rw-r--r--tool/file2lastrev.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/file2lastrev.rb b/tool/file2lastrev.rb
index 430aca673..73cc9997a 100644
--- a/tool/file2lastrev.rb
+++ b/tool/file2lastrev.rb
@@ -19,9 +19,9 @@ def get_revisions(path)
info = case vcs
when :svn
- `cd '#{SRCDIR}' && svn info '#{path}'`
+ `cd "#{SRCDIR}" && svn info "#{path}"`
when :git
- `cd '#{SRCDIR}' && git svn info '#{path}'`
+ `cd "#{SRCDIR}" && git svn info "#{path}"`
end
if info =~ /^Revision: (\d+)$/