update fix

This commit is contained in:
Mateusz Gruszczyński
2025-10-26 21:04:50 +01:00
parent 41fdd7d704
commit e25ed0a069

View File

@@ -1967,9 +1967,9 @@ def print_summary(info, ipv6_enabled, dark_enabled, tp_theme, update_mode):
f"IPv6: {'ENABLED' if ipv6_enabled else 'DISABLED (in configs too)'}"
)
if tp_theme:
print(f"Custom theme: {tp_theme}")
print(f"Custom theme: {tp_theme}")
else:
print(f"Custom theme: DISABLED")
print(f"Custom theme: DISABLED")
print(
"Paths: /opt/npm (app), /data (data), /etc/angie (conf), /var/log/angie (logs)"
@@ -2218,9 +2218,9 @@ def main():
apply_dark=args.dark_mode,
dark_env=dict(
APP_FILEPATH="/opt/npm/frontend",
TP_DOMAIN=args.tp_domain,
TP_COMMUNITY_THEME=args.tp_community_theme,
TP_SCHEME=args.tp_scheme,
TP_DOMAIN=TP_DOMAIN,
TP_COMMUNITY_THEME=TP_COMMUNITY_THEME,
TP_SCHEME=TP_SCHEME,
TP_THEME=args.tp_theme,
),
ipv6_enabled=args.enable_ipv6,