Skip to content

Commit

Permalink
cfu first than fip
Browse files Browse the repository at this point in the history
  • Loading branch information
gorouflex authored Feb 28, 2024
1 parent a1e44d9 commit f956737
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions UXTU4Mac/UXTU4Mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,14 +750,14 @@ def settings():
def main():
cfg = ConfigParser()
cfg.read(CONFIG_PATH)
fip_enabled = cfg.get('User', 'FIP', fallback='0') == '1'
if fip_enabled:
check_fip_integrity()
if cfg.get('User', 'cfu', fallback = '1') == '1':
check_updates()
else:
clr_print_logo()
logging.info("Skipping CFU...")
fip_enabled = cfg.get('User', 'FIP', fallback='0') == '1'
if fip_enabled:
check_fip_integrity()
check_cfg_integrity()
time = cfg.get('User', 'Time', fallback='10')
if user_mode := read_cfg():
Expand Down

0 comments on commit f956737

Please sign in to comment.