Skip to content

Commit

Permalink
Merge pull request #94 from ekohl/fix-regression
Browse files Browse the repository at this point in the history
Fix regression in nodesetdir
  • Loading branch information
mchllweeks authored Nov 28, 2017
2 parents 6e7f747 + 97961d1 commit cb70838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/beaker-rspec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
options = defaults.merge(env_vars)

# process options to construct beaker command string
nodesetdir = options[:nodesetdir] || dir.join('spec', 'acceptance', 'nodesets')
nodesetdir = options[:nodesetdir] || File.join('spec', 'acceptance', 'nodesets')
nodesetfile = options[:nodesetfile] || File.join(nodesetdir, "#{options[:nodeset]}.yml")
fresh_nodes = options[:provision] == 'no' ? '--no-provision' : nil
keyfile = options[:keyfile] ? ['--keyfile', options[:keyfile]] : nil
Expand Down

0 comments on commit cb70838

Please sign in to comment.