From: Tom Hughes Date: Tue, 22 Sep 2020 16:50:44 +0000 (+0000) Subject: Fix ruby 2.7 warning X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/c7f1f41c97097dd3ef67cce1294f77a38ff281c2 Fix ruby 2.7 warning --- diff --git a/cookbooks/chef/libraries/git.rb b/cookbooks/chef/libraries/git.rb index ae797fc00..176613d0a 100644 --- a/cookbooks/chef/libraries/git.rb +++ b/cookbooks/chef/libraries/git.rb @@ -4,7 +4,7 @@ module OpenStreetMap def git(*args, **run_opts) args.push("--force") if args.first == "fetch" && args.last == "--tags" - super(args, run_opts) + super(args, **run_opts) end end end