From 1ec5f73c855360db8dc913aef3f3753269706931 Mon Sep 17 00:00:00 2001 From: Jesang Yoon Date: Wed, 27 Jun 2018 16:55:35 +0900 Subject: [PATCH] Fix wrong maven packaging --- run_create_eb_spring.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/run_create_eb_spring.py b/run_create_eb_spring.py index 7a87ed37..90995e2b 100755 --- a/run_create_eb_spring.py +++ b/run_create_eb_spring.py @@ -198,9 +198,11 @@ def run_create_eb_spring(name, settings): build_command = ['mvn'] if phase != 'dv': - git_command += ['exec:exec'] + build_command += ['exec:exec'] build_command += ['package'] + print_message('build %s: %s' % (name, ' '.join(build_command))) + subprocess.Popen(build_command, cwd=template_folder).communicate() ################################################################################