diff options
author | Lusheng Ji <lji@research.att.com> | 2017-10-12 05:16:59 +0000 |
---|---|---|
committer | Lusheng Ji <lji@research.att.com> | 2017-10-12 05:17:08 +0000 |
commit | f7e64768d235e079a93d431c1ffcfd38b3747ae1 (patch) | |
tree | dca85b786a100da8ac6dc0b25b5bd9045a273991 /mvn-phase-script.sh | |
parent | 1e353cb130e0f9ea8315bb03502215b70525bc8d (diff) |
Add new bootstrap instaler script
Issue-Id: DCAEGEN2-128
Change-Id: I6e55980d819e8030f2b49bdf594dc89539e22d81
Signed-off-by: Lusheng Ji <lji@research.att.com>
Diffstat (limited to 'mvn-phase-script.sh')
-rwxr-xr-x | mvn-phase-script.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh index 14b1124..8cf5b5c 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -77,6 +77,11 @@ package) ;; install) echo "==> install phase script" + case $MVN_PROJECT_MODULEID in + bootstrap) + upload_files_of_extension sh + ;; + esac ;; deploy) echo "==> deploy phase script" @@ -84,6 +89,7 @@ deploy) case $MVN_PROJECT_MODULEID in bootstrap) # build docker image from Docker file (under module dir) and push to registry + upload_files_of_extension sh build_and_push_docker ;; scripts) |