Skip to content
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

macOS build fixes #5347

Merged
merged 1 commit into from Mar 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions macos1015/profiles/moderate.profile
Expand Up @@ -29,3 +29,4 @@ description: |-

selections:
- service_auditd_enabled
- audit_failure_halt
2 changes: 2 additions & 0 deletions ssg/utils.py
Expand Up @@ -118,6 +118,8 @@ def is_applicable_for_product(platform, product):
product_name = ""
# Get official name for product
if product_version is not None:
if product == "ubuntu" or product == "macos":
product_version = product_version[:2] + "." + product_version[2:]
product_name = map_name(product) + ' ' + product_version
else:
product_name = map_name(product)
Expand Down