Fix handling of 'cmd'

nargs='*' made a lot of other parsing fail with strange
errors.
pull/107/head
yuvipanda 2017-10-23 08:38:04 -07:00
rodzic 01574946f5
commit 964fbcf57c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -152,7 +152,7 @@ class Repo2Docker(Application):
argparser.add_argument(
'cmd',
nargs='*',
action='append',
help='Custom command to run after building container'
)