From 8cb9efbbe62a9a544bff2cd6571fc756ce92a738 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Sat, 31 Aug 2019 07:17:46 +0900 Subject: [PATCH] tool/rbinstall.rb: remove a keyword-argument warning --- tool/rbinstall.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index 1a14960af7..a316e07e79 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -171,7 +171,7 @@ def install(src, dest, options = {}) strip = options.delete(:strip) options[:preserve] = true d = with_destdir(dest) - super(src, d, options) + super(src, d, **options) srcs = Array(src) if strip d = srcs.map {|s| File.join(d, File.basename(s))} if $made_dirs[dest]