From b9958c82936c49d8328f0d4dc6be41755d613983 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 15 Aug 2023 18:38:38 +0200 Subject: [PATCH] Fix wo site update alias --- wo/cli/plugins/site_update.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wo/cli/plugins/site_update.py b/wo/cli/plugins/site_update.py index a99cfdc..7b3a1a0 100644 --- a/wo/cli/plugins/site_update.py +++ b/wo/cli/plugins/site_update.py @@ -474,7 +474,8 @@ 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): + version in WOVar.wo_php_versions.items()) and (stype == oldsitetype + and cache == oldcachetype and stype != 'alias'): Log.debug(self, "Nothing to update") return 1