[#37248] [Feature:1.9] Enumerator#inspect — "Yusuke ENDOH" <mame@...>

遠藤です。

12 messages 2008/12/02

[#37337] [Feature #841] Object#self — "rubikitch ." <redmine@...>

Feature #841: Object#self

13 messages 2008/12/09

[#37513] Current status of 1.9.1 RC1's issues — "Yugui (Yuki Sonoda)" <yugui@...>

Hi, folks

14 messages 2008/12/20
[#37516] Re: Current status of 1.9.1 RC1's issues — Masatoshi SEKI <m_seki@...> 2008/12/20

咳といいます。

[#37576] [BUG:trunk] encoding for stdio's — "Yugui (Yuki Sonoda)" <yugui@...>

Yuguiです。

11 messages 2008/12/24

[ruby-dev:37555] [Bug #919] tool/file2lastrev.rbでエラー

From: Tadashi Saito <redmine@...>
Date: 2008-12-22 16:45:31 UTC
List: ruby-dev #37555
Bug #919: tool/file2lastrev.rbでエラー
http://redmine.ruby-lang.org/issues/show/919

起票者: Tadashi Saito
ステータス: Open, 優先度: Normal
担当者: Yuki Sonoda, Target version: 1.9.x

ソースと違うディレクトリでtrunkをmakeしようとすると、
tool/file2lastrev.rbでエラーが出てmakeできません。

$ make
ruby ../tool/file2lastrev.rb --revision.h ".." > "../revision.h.tmp"
svn: '.' is not a working copy
../tool/file2lastrev.rb:34:in `get_revisions': last revision not found (RuntimeError)
	from ../tool/file2lastrev.rb:70
make: *** [../revision.h] エラー 1

一応下ので直りましたが、汎用性があるのか正直自信がありません。

Index: tool/file2lastrev.rb
===================================================================
--- tool/file2lastrev.rb        (revision 20922)
+++ tool/file2lastrev.rb        (working copy)
@@ -10,8 +10,8 @@
 
   path = target_path.directory? ? target_path : target_path.parent  
   begin
-    return :svn, target_path.relative_path_from(path) if File.directory?("#{path}/.svn")
-    return :git, target_path.relative_path_from(path) if File.directory?("#{path}/.git")
+    return :svn, target_path.relative_path_from(Pathname.pwd) if File.directory?("#{path}/.svn")
+    return :git, target_path.relative_path_from(Pathname.pwd) if File.directory?("#{path}/.git")
     path, orig = path.parent, path
   end until path == orig
   raise VCSNotFoundError, "does not seem to be under a vcs"


----------------------------------------
http://redmine.ruby-lang.org

In This Thread

Prev Next