Created
September 15, 2014 04:54
-
-
Save Ignas/9ae9d0fd2c7c62095971 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hash_path ?= $(shell md5 -q requirements.txt) | |
bin/django: var/assets/jquery/bower.json bin/buildout buildout.cfg versions.cfg setup.py .hashes/${hash_path} | |
find src -type f -iname '*.pyc' -exec rm {} + | |
bin/buildout | |
touch -c $@ | |
.hashes/${hash_path}: | |
mkdir -p .hashes | |
grep-for-hash-in-requirement-freeze || run-whatever-freezes-requirements-and-appends-the-hash | |
touch .hashes/${hash_path} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
oh and add .hashes to .gitignore