mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-25 20:28:37 -06:00
fix: Do not check for apk updates with checkonly flag
This commit is contained in:
parent
1973a08642
commit
24bc63e1a2
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ appstate['up-to-date'] = True
|
||||||
if flag != 'buildonly':
|
if flag != 'buildonly':
|
||||||
appstate = update_tools(appstate)
|
appstate = update_tools(appstate)
|
||||||
appstate = update_microg(appstate)
|
appstate = update_microg(appstate)
|
||||||
if not appstate['up-to-date'] or flag == 'force':
|
if (not appstate['up-to-date'] and flag != 'checkonly') or flag == 'force':
|
||||||
appstate = get_apks(appstate)
|
appstate = get_apks(appstate)
|
||||||
|
|
||||||
if (flag != 'checkonly' and not appstate['up-to-date']) or flag in ['force', 'buildonly']:
|
if (flag != 'checkonly' and not appstate['up-to-date']) or flag in ['force', 'buildonly']:
|
||||||
|
|
Loading…
Reference in a new issue