[New] Added development and download pages

This commit is contained in:
Robert von Burg 2014-03-22 00:44:21 +01:00
parent d5f1aeefcf
commit ea72df1d66
1 changed files with 8 additions and 0 deletions

View File

@ -51,11 +51,19 @@ while read project; do
echo "ERROR: Failed to copy package for project ${project}."
exit 1
fi
if ! cp target/*.jar "${DIST_STROLCH}" ; then
echo "ERROR: Failed to publish package for project ${project}."
exit 1
fi
elif ls target/*.war 2>/dev/null ; then
if ! cp target/*.war "${workDir}" ; then
echo "ERROR: Failed to copy wars for project ${project}."
exit 1
fi
if ! cp target/*.war "${DIST_STROLCH}" ; then
echo "ERROR: Failed to publish wars for project ${project}."
exit 1
fi
else
echo "INFO: Project ${project} has no target, skipping."
fi