Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Fix Chef Config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Jun 13, 2013
1 parent f7c4f2e commit 182f207
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Strainer CHANGELOG
==================
v3.0.1
------
- Fix Berkshelf Chef Config

v3.0.0
------
- Upgrade Berkshelf dependency (#27)
Expand Down
2 changes: 1 addition & 1 deletion lib/strainer/sandbox.rb
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def cookbooks_paths
@cookbooks_paths ||= begin
paths = [
@options[:cookbooks_path],
Berkshelf::Chef::Config.instance[:cookbook_path],
Berkshelf.chef_config[:cookbook_path],
'cookbooks'
].flatten.compact.map{ |path| Pathname.new(File.expand_path(path)) }.uniq

Expand Down
2 changes: 1 addition & 1 deletion lib/strainer/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Strainer
# The current version of Strainer
VERSION = '3.0.0'
VERSION = '3.0.1'
end

0 comments on commit 182f207

Please sign in to comment.