5 if current_repository_matches_target_repository?
6 c = scm :update, @new_resource.svn_arguments, verbose, authentication, "-r#{revision_int}", @new_resource.destination
7 Chef::Log.debug "#{@new_resource} updated working copy #{@new_resource.destination} to revision #{@new_resource.revision}"
9 c = scm :switch, @new_resource.svn_arguments, verbose, authentication, "-r#{revision_int}", @new_resource.repository, @new_resource.destination
10 Chef::Log.debug "#{@new_resource} updated working copy #{@new_resource.destination} to #{@new_resource.repository} revision #{@new_resource.revision}"
15 def current_repository
16 @current_repository ||= repo_attrs["URL"]
19 def current_repository_matches_target_repository?
20 !current_repository.nil? && (@new_resource.repository == current_repository)
24 return {} unless ::File.exist?(::File.join(@new_resource.destination, ".svn"))
26 @repo_attrs ||= svn_info.lines.each_with_object({}) do |line, attrs|
27 raise "Could not parse `svn info` data: #{line}" unless line =~ SVN_INFO_PATTERN
29 property = Regexp.last_match[1]
30 value = Regexp.last_match[2]
31 attrs[property] = value
37 status, svn_info, error_message = output_of_command(command, run_options(:cwd => cwd))
39 unless [0, 1].include?(status.exitstatus)
40 handle_command_failures(status, "STDOUT: #{svn_info}\nSTDERR: #{error_message}")