2

When using chef exec berks install I am getting errors relating to having a missing artefact.

My tree is a -> b -> c. b and c are both hosted on github. b is able to install, but when trying to install from a I get the missing artefacts error.

jshthornton
  • 1,284
  • 11
  • 29
  • 1
    Possible duplicate of [Resolve recursive git cookbook dependencies with Berkshelf](http://stackoverflow.com/questions/29603281/resolve-recursive-git-cookbook-dependencies-with-berkshelf) – StephenKing Nov 24 '15 at 08:28

1 Answers1

1

You need to tell it where to get b and c from. Berksfiles, like Gemfile are not transitive. If you are trying to source from git, you'll need to add that to a's Berksfile as well.

coderanger
  • 52,400
  • 4
  • 52
  • 75