mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2026-09-16 18:13:21 +00:00
13 lines
285 B
Bash
13 lines
285 B
Bash
#!/usr/bin/env bash
|
|
set -ev
|
|
|
|
if [ -z ${RELEASE_VERSION} ];
|
|
then
|
|
exit -1
|
|
fi
|
|
|
|
DEPLOYMENT_DIR=deploy_dir
|
|
|
|
mkdir $DEPLOYMENT_DIR -p
|
|
cp war/target/alfresco.war ${DEPLOYMENT_DIR}
|
|
cp distribution/target/alfresco-content-services-community-distribution-$RELEASE_VERSION.zip ${DEPLOYMENT_DIR} |