Also apply the php5/php7 patch for 'hidden' files (e.g. .functions)

This commit is contained in:
Alexandre Aubin 2018-01-16 18:08:14 +01:00
parent 1eb5c6131a
commit 7cf64bb1c7

View file

@ -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: