-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for several reported issues #1045
Conversation
seriva
commented
Mar 23, 2020
- Added missing template for disk_size_gb storage_os_disk (For vm template on Azure disk_size_gb is missing in storage_os_disk #1043)
- Add ability to add subsciptionId to sp.yml on Azure (Add ability to add subsciptionId to sp.yml on Azure #1044)
- Added Epicli binary and python decencies/components.
- Updated documentation about sp.yml to show usage of " for values that have YAML schema characters.
…at have YAML schema characters.
@@ -90,5 +93,26 @@ def _main() -> None: | |||
with open(path, 'w') as file: | |||
file.write(licenses_content) | |||
|
|||
# Write components table to be pasted into 'COMPONENTS.md' | |||
dependancies_content = """ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo - but should work
dep_line = f'| {dep_name} | {dep_version} | {dep_website} | [{dep_license}]({dep_license_url}) |\n' | ||
else: | ||
dep_line = f'| {dep_name} | {dep_version} | {dep_website} | {dep_license} |\n' | ||
dependancies_content = dependancies_content + dep_line |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
|
||
path = os.path.join(os.path.dirname(__file__), 'DEPENDENCIES.md') | ||
with open(path, 'w') as file: | ||
file.write(dependancies_content) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
- Added missing template for disk_size_gb storage_os_disk (hitachienergy#1043) - Add ability to add subsciptionId to sp.yml on Azure (hitachienergy#1044) - Added Epicli binary and python decencies/components. - Updated documentation about sp.yml to show usage of " for values that have YAML schema characters.