diff --git a/ocpm/data/OCKextRepos.yml b/ocpm/data/OCKextRepos.yml index 2cf4063..aa59d93 100644 --- a/ocpm/data/OCKextRepos.yml +++ b/ocpm/data/OCKextRepos.yml @@ -10,5 +10,5 @@ Repos: WhateverGreen: https://github.com/acidanthera/WhateverGreen RealtekRTL8111: https://github.com/Mieze/RTL8111_driver_for_OS_X AirportItlwm: https://github.com/OpenIntelWireless/itlwm - + CpuTscSync: https://github.com/acidanthera/CpuTscSync diff --git a/ocpm/main.py b/ocpm/main.py index 10e1234..1a8a876 100755 --- a/ocpm/main.py +++ b/ocpm/main.py @@ -176,7 +176,8 @@ def run(): def get_latest(k: Kext): try: return get_latest_release(k, repos, args.pre) - except AssertionError: + except AssertionError as e: + print(e) return None latests = thread_map(get_latest, kexts, desc='Fetching Updates'.ljust(bar_len), max_workers=32, bar_format='{desc} {rate_fmt} {remaining} [{bar}] {percentage:.0f}%', ascii=' #', unit=' pkg')