diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-08-08 09:21:45 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-08-08 09:21:45 +0900 |
commit | 69292676a25a0e4bf1e80065737ad5cb42122c2a (patch) | |
tree | ac75d29a3894196e774a29170bf0f28dae4ab039 /tool/lib | |
parent | 694d99dda2f101cc261f00c7526b0e36b826b6f1 (diff) |
Add message for `--ruby` option [ci skip]
Diffstat (limited to 'tool/lib')
-rw-r--r-- | tool/lib/test/unit.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index 9ce3c8b30a..68d2ab471e 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -346,7 +346,8 @@ module Test options[:retry] = false end - opts.on '--ruby VAL', "Path to ruby which is used at -j option" do |a| + opts.on '--ruby VAL', "Path to ruby which is used at -j option", + "Also used as EnvUtil.rubybin by some assertion methods" do |a| options[:ruby] = a.split(/ /).reject(&:empty?) end |