Skip to content

Commit

Permalink
Update munki_rebrand.py (#59)
Browse files Browse the repository at this point in the history
This will be needed if munki/munki#1203 is merged into Munki
  • Loading branch information
macmule committed Aug 22, 2024
1 parent 150ab79 commit a6c3e1d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions munki_rebrand.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@
"icon": ["Managed Software Center.icns", "AppIcon.icns"],
}
MS_APP = {
"path": os.path.join(MSC_APP["path"], "Contents/Resources", "MunkiStatus.app"),
"path": os.path.join(MSC_APP["path"], "Contents/Helpers", "MunkiStatus.app"),
"icon": ["MunkiStatus.icns", "AppIcon.icns"],
}
MN_APP = {
"path": os.path.join(MSC_APP["path"], "Contents/Resources", "munki-notifier.app"),
"path": os.path.join(MSC_APP["path"], "Contents/Helpers", "munki-notifier.app"),
"icon": ["AppIcon.icns"],
}
APPS = [MSC_APP, MS_APP, MN_APP]
Expand Down Expand Up @@ -602,7 +602,7 @@ def main():
os.path.join(
app_payload,
MSC_APP["path"],
"Contents/Resources/munki-notifier.app",
"Contents/Helpers/munki-notifier.app",
),
os.path.join(app_payload, MS_APP["path"]),
os.path.join(app_payload, MSC_APP["path"]),
Expand Down

0 comments on commit a6c3e1d

Please sign in to comment.