diff options
author | Hiroshi SHIBATA <[email protected]> | 2019-12-01 08:02:06 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-06-09 20:54:52 +0900 |
commit | 63872c7e31b7a183d8fd0caec2878ea9c4b73ef3 (patch) | |
tree | a05350c9c4cbe251afca1d48548a8b98e49d039e /test/gdbm | |
parent | b6bae0ec4433bcea6ba94a50de344c2e3b90fee9 (diff) |
[ruby/gdbm] Workaround for GitHub Actions
https://github.com/ruby/gdbm/commit/f42103fe93
Diffstat (limited to 'test/gdbm')
-rw-r--r-- | test/gdbm/test_gdbm.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb index 64692a4465..e02282b451 100644 --- a/test/gdbm/test_gdbm.rb +++ b/test/gdbm/test_gdbm.rb @@ -143,7 +143,7 @@ if defined? GDBM def open_db_child(dbname, *opts) opts = [0644, *opts].map(&:inspect).join(', ') - args = [EnvUtil.rubybin, "-rgdbm", "-e", <<-SRC, dbname] + args = [EnvUtil.rubybin, "-Ilib", "-rgdbm", "-e", <<-SRC, dbname] STDOUT.sync = true gdbm = GDBM.open(ARGV.shift, #{opts}) puts gdbm.class |