X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace..3077cba17b41564f11373e82199c1e1d1b6a673d:/cookbooks/chef/libraries/git.rb diff --git a/cookbooks/chef/libraries/git.rb b/cookbooks/chef/libraries/git.rb index 775c2da1a..176613d0a 100644 --- a/cookbooks/chef/libraries/git.rb +++ b/cookbooks/chef/libraries/git.rb @@ -1,16 +1,13 @@ -class Chef - class Provider - class Git - def remote_resolve_reference - Chef::Log.debug("#{@new_resource} resolving remote reference") - command = git('ls-remote', @new_resource.repository, @new_resource.revision, "#{@new_resource.revision}^{}") - @resolved_reference = shell_out!(command, run_options).stdout.split("\n").last - if @resolved_reference =~ /^([0-9a-f]{40})\s+(\S+)/ - Regexp.last_match[1] - else - nil - end +module OpenStreetMap + module Provider + module Git + def git(*args, **run_opts) + args.push("--force") if args.first == "fetch" && args.last == "--tags" + + super(args, **run_opts) end end end end + +Chef::Provider::Git.prepend(OpenStreetMap::Provider::Git)