lib/docman/deployers/git_deployer.rb in docman-0.0.52 vs lib/docman/deployers/git_deployer.rb in docman-0.0.53

- old
+ new

@@ -16,10 +16,10 @@ params['prev_version'] = prev_version version = Docman::Taggers::Tagger.create(params, root, self).perform File.open(filepath, 'w') {|f| f.write(version) } filepath = File.join(root['full_build_path'], 'version.properties') - File.open(filepath, 'w') {|f| f.write("version=#{version}") } + File.open(filepath, 'w') {|f| f.write("tag=#{version}") } tag = version end GitUtil.commit(root['full_build_path'], root['full_build_path'], 'Updated version', tag)