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

Use correct appguid for darwin when uploading to Omaha #1211

Merged
merged 1 commit into from
Jan 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions script/lib/omaha.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def get_base64_authorization(omahaid, omahapw):

# To-Do: Add functions to create apps
def get_appguid(channel, platform):
if channel in 'dev' or channel in 'release' and platform in 'darwin':
if channel in ['dev'] or platform in ['darwin'] and channel in ['beta', 'dev', 'release']:
return '{CB2150F2-595F-4633-891A-E39720CE0531}'
elif channel in 'beta':
elif channel in ['beta']:
return '{103BD053-949B-43A8-9120-2E424887DE11}'
elif channel in 'release':
elif channel in ['release']:
return '{AFE6A462-C574-4B8A-AF43-4CC60DF4563B}'


Expand Down