Skip to content

Instantly share code, notes, and snippets.

@pdehaye
Created July 12, 2013 15:47
Show Gist options
  • Save pdehaye/5985467 to your computer and use it in GitHub Desktop.
Save pdehaye/5985467 to your computer and use it in GitHub Desktop.
echo -en "* Incrementing Deployment:"
version=`cat VERSION_NUMBER`
version=$((version+1))
echo -n "$version" > VERSION_NUMBER
sed -i '' "s/{{VERSION}}/$version/g" ../index.html
echo -e " Done.\n\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment