Ver código fonte

update bbuild

tags/v1.5.4
Jonathan Cobb 3 anos atrás
pai
commit
d299a779fa
1 arquivos alterados com 3 adições e 1 exclusões
  1. +3
    -1
      bin/bbuild

+ 3
- 1
bin/bbuild Ver arquivo

@@ -20,6 +20,7 @@ SCRIPT_DIR="$(cd "$(dirname "${SCRIPT}")" && pwd)"

CLEAN="clean"
PROFILE=""
WEB=1
if [[ -n "${1}" ]] ; then
if [[ "${1}" == "no-clean" ]] ; then
CLEAN=""
@@ -27,6 +28,7 @@ if [[ -n "${1}" ]] ; then
fi
if [[ "${1}" == "debug" ]] ; then
PROFILE=""
WEB=""
elif [[ "${1}" == "full" ]] ; then
PROFILE="-Pproduction-full"
elif [[ "${1}" == "prod" ]] ; then
@@ -39,4 +41,4 @@ else
PROFILE="-Pproduction"
fi

mvn -DskipTests=true -Dcheckstyle.skip=true ${PROFILE} ${CLEAN} package
BUBBLE_PRODUCTION=${WEB} mvn -DskipTests=true -Dcheckstyle.skip=true ${PROFILE} ${CLEAN} package

Carregando…
Cancelar
Salvar