[Project] Changed deployment folder

This commit is contained in:
Robert von Burg 2016-07-05 10:49:06 +02:00
parent 14c866de64
commit c31140abaf
1 changed files with 3 additions and 2 deletions

View File

@ -1,16 +1,17 @@
#!/bin/bash
projectName=strolch_bundle
DIST_STROLCH="/var/www/eitch/strolch.li/dist/snapshot"
DEPLOY_SERVER="hosting.eitchnet.ch"
ROOT="$(cd ${0%/*} ; pwd)"
projectVersion=$(grep -m 1 "<version>" pom.xml | tr '<>' '|' | cut -d '|' -f 3)
if [ $? != 0 ] ; then
echo "ERROR: Failed to parse version!"
fi
bundle_name="${projectName}-${projectVersion}"
workDir="${ROOT}/target/${bundle_name}"
DIST_STROLCH="/var/www/eitch/strolch.li/dist/${projectVersion}"
DEPLOY_SERVER="hosting.eitchnet.ch"
echo "INFO: Creating bundle ${bundle_name}"