[Major] fixed broken buildMSE.sh

This commit is contained in:
Robert von Burg 2014-09-17 09:53:23 +02:00
parent 7e7bd06b1e
commit 2a79b83544
1 changed files with 2 additions and 3 deletions

View File

@ -29,12 +29,11 @@ if ! mvn clean ; then
fi
echo "INFO Packaging..."
cd ../..
if ! tar --exclude="*/target" --exclude="*/.git*" -cvzf strolch_mse.tar.gz strolch_mse ; then
cd ../
if ! tar --exclude="*/target" --exclude="*/.git*" -cvzf strolch_mse.tar.gz * ; then
echo "ERROR: Failed to build package!"
exit 1
fi
rm -rf strolch_mse/
if ! mv strolch_mse.tar.gz ${DIST_STROLCH}/strolch_mse.tar.gz ; then
echo "ERROR: Failed to publish MSE file!"