Skip to content

Commit

Permalink
Print tools to be installed
Browse files Browse the repository at this point in the history
  • Loading branch information
wallento committed Jun 1, 2017
1 parent 62321f2 commit 2d6636d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lcci/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ def tools_install(args):
for t in repo.list(r):
tools.append({'name': t.name, 'version': t.lcci_releases[r]})

logging.info("Will install the following tools:")
for t in tools:
logging.info(" {}:{}".format(t['name'],t['version']))

for t in tools:
tool = repo.get_tool(t['name'])
tool.install(t['version'])
Expand Down

0 comments on commit 2d6636d

Please sign in to comment.