Skip to content

Commit

Permalink
fix(generate_bom): Missing paren and some indentation. (#1644)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtk54 committed May 15, 2017
1 parent f7e7d7a commit f3f84a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/generate_bom.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,12 +294,12 @@ def __publish_config(self, component, profile_path):
pass
elif os.path.isdir(full_profile):
profile_path = '{0}.tar.gz'.format(full_profile)
result = run_quick('tar -cvf {0} {1}/*'.format(profile_path, full_profile)
result = run_quick('tar -cvf {0} {1}/*'.format(profile_path, full_profile))
if result.returncode != 0:
print "Creating a tar archive of '{0}/*' failed with \n{1}\nexiting...".format(full_profile, result.stdout)
exit(result.returncode)
else:
continue
else:
continue

result = run_quick(
'hal admin publish profile {0} --color false --bom-path {1} --profile-path {2}'
Expand Down

0 comments on commit f3f84a0

Please sign in to comment.