Skip to content

Commit

Permalink
Fix regression in nodesetdir
Browse files Browse the repository at this point in the history
Introduced in c0abee8fd9c155ab5b9df9bef07f91152266fda4
  • Loading branch information
ekohl committed Nov 28, 2017
1 parent 6e7f747 commit 97961d1
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 97961d1

Please sign in to comment.