mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
param -i para gerar installer
This commit is contained in:
parent
50e538aeb5
commit
89614be1af
1 changed files with 28 additions and 13 deletions
|
@ -18,8 +18,8 @@ alias ecmb=ecmbuild
|
|||
alias ecmc=ecmclean
|
||||
alias ecms=ecmstart
|
||||
alias ecmo=ecmstop
|
||||
alias ecm=goecm
|
||||
|
||||
alias ecmi=ecminstall
|
||||
alias ecm=ecmfull
|
||||
|
||||
# update ecm
|
||||
ecmup() {
|
||||
|
@ -30,19 +30,31 @@ ecmup() {
|
|||
|
||||
# build it!
|
||||
ecmbuild() {
|
||||
vared -p 'build? no problem sir, do you want a installer? (y/N) ' INSTALLER
|
||||
echo "build? no problem sir..."
|
||||
|
||||
case $@ in
|
||||
-*i*)
|
||||
INSTALLER=y
|
||||
;;
|
||||
esac
|
||||
|
||||
cd $VOLDEMORT && mvncie
|
||||
cd $VOLDEMORT/social-ecm
|
||||
cd $VOLDEMORT/wcm && mvncie
|
||||
cd $ECM/ecm/wecmpackage && mvncie
|
||||
cd $VOLDEMORT/ecm && mvncie
|
||||
if [[ $INSTALLER -eq 'y' ]]; then
|
||||
cd $VOLDEMORT/ecm/installer
|
||||
mvnci -am -Drun=installer -DLinux64=true -DappServer=jboss
|
||||
else
|
||||
cd $VOLDEMORT/ecm/build && mvnci
|
||||
cd $VOLDEMORT/social-ecm/build && mvnci
|
||||
fi
|
||||
ecminstall
|
||||
}
|
||||
|
||||
# gen installer or cp wars...
|
||||
ecminstall() {
|
||||
if [[ "$INSTALLER" == "y" ]]; then
|
||||
cd $VOLDEMORT/ecm/installer
|
||||
mvnci -am -Drun=installer -DLinux64=true -DappServer=jboss
|
||||
else
|
||||
cd $VOLDEMORT/ecm/build && mvnci
|
||||
cd $VOLDEMORT/social-ecm/build && mvnci
|
||||
fi
|
||||
}
|
||||
|
||||
# clean jboss trash folders
|
||||
|
@ -53,8 +65,11 @@ ecmclean() {
|
|||
|
||||
# start jboss server
|
||||
ecmstart() {
|
||||
echo "starting jboss"
|
||||
JAVA_OPTS="-Xmx2048m -XX:MaxPermSize=512m -DzkRun -Dbootstrap_conf=true" $ECM_JBOSS/bin/standalone.sh
|
||||
# why shall I start server if i just gen a installer?
|
||||
if [[ "$INSTALLER" == "y" ]]; then
|
||||
echo "starting jboss"
|
||||
JAVA_OPTS="-Xmx2048m -XX:MaxPermSize=512m -DzkRun -Dbootstrap_conf=true" $ECM_JBOSS/bin/standalone.sh
|
||||
fi
|
||||
}
|
||||
|
||||
# stop jboss (usually on 8080)
|
||||
|
@ -64,7 +79,7 @@ ecmstop() {
|
|||
}
|
||||
|
||||
# do all the things
|
||||
goecm() {
|
||||
ecmfull() {
|
||||
echo "serious business here. let's have a coffee.."
|
||||
ecmstop
|
||||
ecmclean
|
||||
|
|
Loading…
Reference in a new issue