From c7f1f41c97097dd3ef67cce1294f77a38ff281c2 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 22 Sep 2020 16:50:44 +0000 Subject: [PATCH] Fix ruby 2.7 warning --- cookbooks/chef/libraries/git.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2