Skip to content

Commit

Permalink
Yet another fix for --show-config for items that are forced False on …
Browse files Browse the repository at this point in the history
…Apple silicon
  • Loading branch information
gregneagle committed Mar 5, 2021
1 parent 1e3bb8a commit 8a0a234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/client/munkilib/prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def print_config():
if pref_name == 'LastNotifiedDate':
# skip it
continue
if pref_name in FORCE_FALSE_ON_APPLE_SILICON:
if is_apple_silicon() and pref_name in FORCE_FALSE_ON_APPLE_SILICON:
value = False
where = "Forced as False on Apple Silicon"
else:
Expand Down

0 comments on commit 8a0a234

Please sign in to comment.