#!/bin/bash

#jars the directory liquibase-beta_de_cebit.full and all fgiles in it using the existing manifest file
#jar cvfm lb.jar liquibase-beta_de_cebit.full/META-INF/MANIFEST.MF -C liquibase-beta_de_cebit.full/ .


directory=$1
if [ -n "$directory" ]; then
	jar cvfm $directory.jar $directory/META-INF/MANIFEST.MF -C $directory .
else
	read -p "directory? " directory
	$0 $directory 
fi


