Skip to content

Commit

Permalink
Fix the glob pattern to include /usr/lib (#164)
Browse files Browse the repository at this point in the history
Fix up #161.
  • Loading branch information
nobu authored Dec 10, 2024
1 parent cd69df8 commit 481651e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fiddle/test_fiddle.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_windows_constant

def test_dlopen_linker_script_input_linux
omit("This is only for Linux") unless RUBY_PLATFORM.match?("linux")
if Dir.glob("/usr/lib{64}/**/libncurses.so").empty?
if Dir.glob("/usr/lib{,64}/**/libncurses.so").empty?
omit("libncurses.so is needed")
end
if ffi_backend?
Expand Down

0 comments on commit 481651e

Please sign in to comment.