Refactor
[aquarium] / make-dist.sh
index fc53283..4fa4022 100755 (executable)
@@ -24,7 +24,8 @@ cleanup() {
 
 # Check if there are pending changes
 status=`git status --porcelain|grep -v "??"`
-if [ ! -z "$status" ]; then
+if [ ! -z "$status" ]
+then
     echo "The following files are not committed:"
     echo 
     echo $status
@@ -34,10 +35,31 @@ if [ ! -z "$status" ]; then
     touch stashed
 fi
 
-# Get latest tag
-tag=`git tag |tail -n 1`
+# Get version or tag to checkout from cmd-line
+if [ ! -z $1 ]
+then
+    echo -n "checking commit $1... "
+    out=`git show $1 2>&1|grep "fatal: ambiguous argument '$1'"`
+    if [ -z "$out" ]
+    then
+        tag=$1
+        echo "success"
+    else
+        fail "retrieving info about commit $1"
+    fi
+else
+    echo -n "checking out latest tag ("
+    tag=`git tag |tail -n 1`
+    echo "$tag)"
+fi
 
-DIR="$tag"
+# Tags are marked as aquarium-*
+if [[ "$tag" =~ "aquarium-" ]];
+then
+    DIR=$tag
+else
+    DIR="aquarium-$tag"
+fi
 
 # Creating dist dirs
 mkdir -p $DIR
@@ -57,13 +79,17 @@ mvn dependency:copy-dependencies >> build.log ||  fail "collecting dependencies"
 cp target/dependency/*.jar $DIR/lib || fail "copying dependencies"
 
 echo "Copying Aquarium classes"
-cp target/$tag.jar $DIR/lib || fail "copying $tag.jar"
+aquariumjar=`find target -type f|egrep "aquarium-[0-9\.]+(-SNAPSHOT)?\.jar"`
+cp $aquariumjar $DIR/lib || fail "copying $aquariumjar"
 
 echo "Copying scripts and config files"
-cp aquarium.sh $DIR/bin || fail "copying aquarium.sh"
+cp dist/aquarium.sh $DIR/bin || fail "copying aquarium.sh"
+cp dist/log4j.properties $DIR/conf|| fail "copying log4j.properties"
+cp dist/aquarium.properties $DIR/conf || fail "copying aquarium.properties"
+cp dist/policy.yaml $DIR/conf || fail "copying policy.yaml"
 
 echo "Creating archive"
-tar zcvf $tag.tar.gz $DIR >> build.log 2>&1 || fail "creating archive"
+tar zcvf $DIR.tar.gz $DIR >> build.log 2>&1 || fail "creating archive"
 
 echo "Cleaning up"
 rm -Rf $DIR
@@ -71,4 +97,5 @@ cleanup
 rm $LOG
 
 echo "File $tag.tar.gz created succesfully"
+
 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :