2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-08-28 13:58:16 +00:00

Fix the 'list' subcommand of nodefirmware

nodefirmware did not properly set up if 'list' was given
This commit is contained in:
Jarrod Johnson
2018-09-21 10:41:15 -04:00
parent 1de84f0417
commit c68c4d8cf7

View File

@@ -74,6 +74,8 @@ try:
components = []
for arg in comps:
components += arg.split(',')
if not components:
components = ['all']
except IndexError:
argparser.print_help()