Changeset 4054 for lang/ruby/shipit

Show
Ignore:
Timestamp:
01/05/08 15:18:15 (5 years ago)
Author:
cho45
Message:

lang/ruby/shipit/trunk/lib/shipit.rb:

tag のとき -m 追加 (エディタがひらいてしまっていた)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/shipit/trunk/lib/shipit.rb

    r4050 r4054  
    215215                trunk = @url + "trunk" 
    216216                tag   = @url + ("tags/#{@format}" % VERS) 
    217                 command = ["svn", "cp", trunk, tag].map {|i| i.to_s } 
     217                msg   = "Release %s" % VERS 
     218                command = ["svn", "cp", "-m", msg, trunk, tag].map {|i| i.to_s } 
    218219                system(*command) 
    219220        end