Skip to content

Commit

Permalink
6946: add installCore option
Browse files Browse the repository at this point in the history
  • Loading branch information
mirage22 committed Dec 16, 2020
1 parent 7e24b75 commit a3ad94a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Expand Up @@ -80,6 +80,7 @@ function printHelp() {
{
printf " \t%s\t%s\n" "--test" "to run the tests"
printf " \t%s\t%s\n" "--testUi" "to run the tests including UI tests"
printf " \t%s\t%s\n" "--installCore" "install JMC core"
printf " \t%s\t%s\n" "--packageJmc" "to package JMC"
printf " \t%s\t%s\n" "--packageAgent" "to package Agent"
printf " \t%s\t%s\n" "--clean" "to run maven clean"
Expand Down Expand Up @@ -108,7 +109,7 @@ function runUiTests() {
}

function packageJmc() {
local timestamp=$1
startJetty $timestamp
installCore $timestamp
local packageLog="${BASEDIR}/build_${timestamp}.4.package.log"
Expand Down Expand Up @@ -250,6 +251,9 @@ function parseArgs() {
--testUi)
runUiTests $timestamp
;;
--installCore)
installCore $timestamp
;;
--packageJmc)
packageJmc $timestamp
;;
Expand Down

0 comments on commit a3ad94a

Please sign in to comment.