Taking run_cmd as input on the CLI

Change-Id: I75926684a60e05c66edcf69014a3b0cb27e5d8b4
Closes-Bug: #1432691
This commit is contained in:
Devdatta Kulkarni
2015-03-16 11:02:27 -05:00
parent a2f3a00906
commit 864e96a23b

View File

@@ -680,15 +680,13 @@ Available commands:
# Check for the entry point. Check args first, then the planfile.
# If it's neither of those places, prompt for it and update the
# plan definition.
'''
run_cmd = None
if args.run_cmd is not None:
plan_definition['artifacts'][0]['run_cmd'] = args.run_cmd
if plan_definition['artifacts'][0].get('run_cmd') is None:
run_cmd = raw_input("Please specify an entry point for your "
run_cmd = raw_input("Please specify start/run command for your "
"application.\n> ")
plan_definition['artifacts'][0]['run_cmd'] = run_cmd
'''
# Update name and description if specified.
if args.name is not None: