-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pod update
script should only run if new or deleted files, not if files changed
#63
Comments
bump? This is done? |
Just looked into it. You can specify as an option to Maybe we could hook into git to piggyback on its detection of added and deleted files? |
Would the following work?
I have some code to do this somewhere. |
Ah, the script I had lying around from before actually checks the contents to see if they've changed - it used a command called md5deep, available via MacPorts (and brew? ) But for this requirement, how about: #Create a checksum for the current directory, will result in a new check-sum if
#files have been added or removed
find . | awk '{print $1}' | md5 |
No description provided.
The text was updated successfully, but these errors were encountered: