summaryrefslogtreecommitdiff
path: root/lib/chef/provider/git.rb
diff options
context:
space:
mode:
authorJoshua C. Burt <joshburt@shapeandshare.com>2016-05-05 08:54:46 -0600
committerJoshua C. Burt <joshburt@shapeandshare.com>2016-05-05 08:54:46 -0600
commit5d91f332d1435edd4d44a855c60dc4340a006af3 (patch)
treec3bbab58c239031d262842ea2098f59202b487ab /lib/chef/provider/git.rb
parent0f5e73eebbb509750a380ccddfaf112ba415dd4a (diff)
downloadchef-5d91f332d1435edd4d44a855c60dc4340a006af3.tar.gz
refactored instances of @new_resource.destination to be cwd within the git hwrp.
Diffstat (limited to 'lib/chef/provider/git.rb')
-rw-r--r--lib/chef/provider/git.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/chef/provider/git.rb b/lib/chef/provider/git.rb
index 9516011c3f..028fc51c13 100644
--- a/lib/chef/provider/git.rb
+++ b/lib/chef/provider/git.rb
@@ -42,11 +42,11 @@ class Chef
def define_resource_requirements
# Parent directory of the target must exist.
requirements.assert(:checkout, :sync) do |a|
- dirname = ::File.dirname(@new_resource.destination)
+ dirname = ::File.dirname(cwd)
a.assertion { ::File.directory?(dirname) }
a.whyrun("Directory #{dirname} does not exist, this run will fail unless it has been previously created. Assuming it would have been created.")
a.failure_message(Chef::Exceptions::MissingParentDirectory,
- "Cannot clone #{@new_resource} to #{@new_resource.destination}, the enclosing directory #{dirname} does not exist")
+ "Cannot clone #{@new_resource} to #{cwd}, the enclosing directory #{dirname} does not exist")
end
requirements.assert(:all_actions) do |a|
@@ -79,14 +79,14 @@ class Chef
enable_submodules
add_remotes
else
- Chef::Log.debug "#{@new_resource} checkout destination #{@new_resource.destination} already exists or is a non-empty directory"
+ Chef::Log.debug "#{@new_resource} checkout destination #{cwd} already exists or is a non-empty directory"
end
end
def action_export
action_checkout
- converge_by("complete the export by removing #{@new_resource.destination}.git after checkout") do
- FileUtils.rm_rf(::File.join(@new_resource.destination, ".git"))
+ converge_by("complete the export by removing #{cwd}.git after checkout") do
+ FileUtils.rm_rf(::File.join(cwd, ".git"))
end
end
@@ -109,11 +109,11 @@ class Chef
end
def existing_git_clone?
- ::File.exist?(::File.join(@new_resource.destination, ".git"))
+ ::File.exist?(::File.join(cwd, ".git"))
end
def target_dir_non_existent_or_empty?
- !::File.exist?(@new_resource.destination) || Dir.entries(@new_resource.destination).sort == [".", ".."]
+ !::File.exist?(cwd) || Dir.entries(cwd).sort == [".", ".."]
end
def find_current_revision
@@ -137,7 +137,7 @@ class Chef
end
def clone
- converge_by("clone from #{@new_resource.repository} into #{@new_resource.destination}") do
+ converge_by("clone from #{@new_resource.repository} into #{cwd}") do
remote = @new_resource.remote
clone_cmd = ["clone"]
@@ -145,9 +145,9 @@ class Chef
clone_cmd << "--depth #{@new_resource.depth}" if @new_resource.depth
clone_cmd << "--no-single-branch" if @new_resource.depth && git_minor_version >= Gem::Version.new("1.7.10")
clone_cmd << "\"#{@new_resource.repository}\""
- clone_cmd << "\"#{@new_resource.destination}\""
+ clone_cmd << "\"#{cwd}\""
- Chef::Log.info "#{@new_resource} cloning repo #{@new_resource.repository} to #{@new_resource.destination}"
+ Chef::Log.info "#{@new_resource} cloning repo #{@new_resource.repository} to #{cwd}"
git clone_cmd
end
end