Skip to content

Commit

Permalink
Merge pull request #475 from MikaelSmith/fix-Rakefile
Browse files Browse the repository at this point in the history
(maint) Fix Rakefile when specifying BEAKER_HOSTS
  • Loading branch information
James Stocks authored Aug 22, 2016
2 parents abc0c07 + 133b728 commit c8af184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acceptance/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ EOS

target = ENV['TEST_TARGET']
master_host = ENV['MASTER_TEST_TARGET'] || 'redhat7-64m'
if !target.start_with?(master_host)
if target && !target.start_with?(master_host)
target = "#{master_host}-#{target}"
end
if config and File.exists?(config)
Expand Down

0 comments on commit c8af184

Please sign in to comment.