I am setting up build process of our node.js app on heroku.
I'd like to prefix my static file directory with the date of last modification on static file directory. I am doing that by inspecting git log on given directory.
It kinda works, but I have two issues:
I am not sure where my repository is. Currently, I am fixing it in environment variable by doing export
APPLICATION_GIT_DIR=pwdon top of bin/compile file, but it just feels wrong.It seems then this repository contains repository in the state after previous push, not the current one. Is there a way to access the push received (I guess we are in pre-commit hook)?