I'm adding a bundle command to the Sqitch project, to make it easier to bundle up Sqitch and all of its dependencies in a single directory. I expect to use this for Docker images, Homebrew formulas, and perhaps binary installers. After digging through Carton and cpanminus, it looks like Menlo is the key thing to use. So I made a cpanfile and wrote this:
I'm adding a bundle command to the Sqitch project, to make it easier to bundle up Sqitch and all of its dependencies in a single directory. I expect to use this for Docker images, Homebrew formulas, and perhaps binary installers. After digging through Carton and cpanminus, it looks like Menlo is the key thing to use. So I made a
cpanfile
and wrote this:Which works great, except that the
recommends
modules in thecpanfile
aren't installed. Is Menlo not reading the cpanfile?