]> git.openstreetmap.org Git - chef.git/blob - cookbooks/chef/libraries/git.rb
imagery: restart titiler service to workaround resource leak
[chef.git] / cookbooks / chef / libraries / git.rb
1 module OpenStreetMap
2   module Provider
3     module Git
4       def git(*args, **run_opts)
5         args.push("--force") if args.first == "fetch" && args.last == "--tags"
6
7         super(args, **run_opts)
8       end
9     end
10   end
11 end
12
13 Chef::Provider::Git.prepend(OpenStreetMap::Provider::Git)