]> git.openstreetmap.org Git - chef.git/commitdiff
Fix ruby 2.7 warning
authorTom Hughes <tom@compton.nu>
Tue, 22 Sep 2020 16:50:44 +0000 (16:50 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 22 Sep 2020 16:50:58 +0000 (16:50 +0000)
cookbooks/chef/libraries/git.rb

index ae797fc003f47298734ea6ee6f26481da6957d22..176613d0a794979e30feea741d2fa21cb7c8dc82 100644 (file)
@@ -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