Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. I am not sure where my repository is. Currently, I am fixing it in environment variable by doing export APPLICATION_GIT_DIR=pwd on top of bin/compile file, but it just feels wrong.

  2. 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)?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.