From 7da989276f8d46dbfdb60b6f24f2dc29ac357e00 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 15 Aug 2023 18:43:11 +0200 Subject: [PATCH] Fix wo site update proxy --- wo/cli/plugins/site_update.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wo/cli/plugins/site_update.py b/wo/cli/plugins/site_update.py index 7b3a1a0..a9df73a 100644 --- a/wo/cli/plugins/site_update.py +++ b/wo/cli/plugins/site_update.py @@ -475,7 +475,9 @@ class WOSiteUpdateController(CementBaseController): # Vérification si rien n'a changé if all(globals()[version_key] is bool(check_php_version == version) for version_key, version in WOVar.wo_php_versions.items()) and (stype == oldsitetype - and cache == oldcachetype and stype != 'alias'): + and cache == oldcachetype + and stype != 'alias' + and stype != 'proxy'): Log.debug(self, "Nothing to update") return 1