negativetwelve / heroku-buildpack-subdir

Deploy apps from subdirectories to Heroku
77 stars 61 forks source link

Use per-subdir value for CACHE_DIR #15

Closed ypresto closed 5 years ago

ypresto commented 5 years ago

This will place cache of the same buildpack used for multiple subdirs in dedicated CACHE_DIR.

For example, nodejs buildpack uses fixed path for cache dir in CACHE_DIR

Note that doing mkdir CACHE_DIR is responsibility of child buildpacks: https://devcenter.heroku.com/articles/buildpack-api#caching

ypresto commented 5 years ago

@negativetwelve Yes, that was intentional. Changed to services! 😃

negativetwelve commented 5 years ago

Great, thanks again!