Skip to content

Commit

Permalink
Fix wrong maven packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonjs2 committed Jun 27, 2018
1 parent de3fa3a commit 1ec5f73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run_create_eb_spring.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

################################################################################
Expand Down

0 comments on commit 1ec5f73

Please sign in to comment.