mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[php] Also patch stuff in subfolers inside scripts/ (some apps have an experimental_helpers/ folder)
This commit is contained in:
parent
9dbf626b36
commit
b747c17369
1 changed files with 1 additions and 0 deletions
|
@ -2889,6 +2889,7 @@ def _patch_legacy_php_versions(app_folder):
|
||||||
files_to_patch = []
|
files_to_patch = []
|
||||||
files_to_patch.extend(glob.glob("%s/conf/*" % app_folder))
|
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.extend(glob.glob("%s/scripts/*/*" % 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)
|
files_to_patch.append("%s/manifest.json" % app_folder)
|
||||||
files_to_patch.append("%s/manifest.toml" % app_folder)
|
files_to_patch.append("%s/manifest.toml" % app_folder)
|
||||||
|
|
Loading…
Add table
Reference in a new issue