首页 > 编程 > Ruby > 正文

ruby 小脚本搞定CVS服务器更换后checkout下来的工程迁移

2020-10-29 19:46:51
字体:
来源:转载
供稿:网友
def changeCVS(path)
Dir.foreach(path) do |dir|
if dir != "." && dir != ".."
absdir = path + "/" + dir
if (File.directory? absdir) && (dir == "CVS")
cvs_root_file_name = absdir + "/Root"
p cvs_root_file_name
File.open(cvs_root_file_name,"w") do |file|
file.write(":connection_type:user@ip:repository")
end
elsif File.directory? absdir
changeCVS(absdir)
end
end
end
end

changeCVS("C:/workspace")
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表