Skip to content

Commit

Permalink
Prevent a "warning: `*' interpreted as argument prefix"
Browse files Browse the repository at this point in the history
  • Loading branch information
mame committed Apr 29, 2022
1 parent 99281f5 commit cf45d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb
Expand Up @@ -15,7 +15,7 @@

Dir.mktmpdir("custom_name") do |dir|
built_gem = File.expand_path(File.join(dir, "custom_name.gem"))
system *gem, "build", gemspec, "--output", built_gem
system *gem, "install", "--verbose", "--local", built_gem, *ARGV
system(*gem, "build", gemspec, "--output", built_gem)
system(*gem, "install", "--verbose", "--local", built_gem, *ARGV)
system %q(ruby -rcustom_name -e "puts 'Result: ' + CustomName.say_hello")
end

0 comments on commit cf45d30

Please sign in to comment.