Created
March 13, 2012 14:07
-
-
Save eyedol/2028980 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# To check tags, run this in the browser | |
# https://api.github.com/repos/ushahidi/Ushahidi_Web/tags | |
CURRENT_TAG='2.2b1' | |
PREVIOUS_TAG='2.1-stable' | |
# You can get this from the sql/ushahidi.sql script | |
CURRENT_VERSION='2.2' | |
PREVIOUS_VERSION='2.1' | |
git diff $CURRENT_TAG $PREVIOUS_TAG --name-only | zip -r ~/ushahidi_${CURRENT_VERSION}_${PREVIOUS_VERSION}.zip -@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment