Skip to content

Commit

Permalink
Merge pull request test-kitchen#816 from Peuserik/suse-integration
Browse files Browse the repository at this point in the history
fixed SuSe OS busser install
  • Loading branch information
fnichol committed Aug 19, 2015
2 parents 23d20de + aad7901 commit 4c5bb88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/kitchen/verifier/busser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def gem_install_args

args = gem
args += " --version #{version}" if version
args += " --no-rdoc --no-ri"
args += " --no-rdoc --no-ri --no-format-executable"
args
end

Expand Down
4 changes: 2 additions & 2 deletions spec/kitchen/verifier/busser_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def self.common_powershell_variable_specs

it "sets gem install arguments" do
cmd.must_match regexify(
%{gem_install_args="busser --no-rdoc --no-ri"})
%{gem_install_args="busser --no-rdoc --no-ri --no-format-executable"})
end

it "prepends sudo for busser binstub command when :sudo is set" do
Expand Down Expand Up @@ -284,7 +284,7 @@ def self.common_powershell_variable_specs

it "sets gem install arguments" do
cmd.must_match regexify(
%{$gem_install_args = "busser --no-rdoc --no-ri"})
%{$gem_install_args = "busser --no-rdoc --no-ri --no-format-executable"})
end

it "sets path to busser binstub command" do
Expand Down

0 comments on commit 4c5bb88

Please sign in to comment.