From 7cf64bb1c7d3cc8bdf20b447a7f2df5563dd899f Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 16 Jan 2018 18:08:14 +0100 Subject: [PATCH] Also apply the php5/php7 patch for 'hidden' files (e.g. .functions) --- src/yunohost/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index f953c982c..39da58180 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -2193,6 +2193,7 @@ def _patch_php5(app_folder): files_to_patch = [] files_to_patch.extend(glob.glob("%s/conf/*" % app_folder)) files_to_patch.extend(glob.glob("%s/scripts/*" % app_folder)) + files_to_patch.extend(glob.glob("%s/scripts/.*" % app_folder)) files_to_patch.append("%s/manifest.json" % app_folder) for filename in files_to_patch: