This repository was archived by the owner on Apr 9, 2019. It is now read-only.

Description
Hi,
please consider using tagged version of my Java packaging script:
- that way you can have repeatable builds (master branch changes, so the builds created at different times can be slightly different)
- from time to time I can break something in master, using tagged version will make your script work regardless of any breakage in master
You can either hardcode the tag you want to use (like v6.30-2) or use something like this to detect newest version:
TAG=`git tag -l 'v6.30-*'|tail -n1`
git checkout $TAG