mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
[enh] handle checking extra script file containing functions.
This commit is contained in:
parent
5dad4c184c
commit
81ddabf580
1 changed files with 5 additions and 1 deletions
|
@ -214,7 +214,11 @@ if __name__ == '__main__':
|
||||||
header(app_path)
|
header(app_path)
|
||||||
check_files_exist(app_path)
|
check_files_exist(app_path)
|
||||||
check_manifest(app_path + "/manifest.json")
|
check_manifest(app_path + "/manifest.json")
|
||||||
i, scripts = 0, ("install", "remove", "upgrade", "backup", "restore")
|
i, scripts = 0, ["install", "remove", "upgrade", "backup", "restore"]
|
||||||
|
for (dirpath, dirnames, filenames) in os.walk(os.path.join(app_path, "scripts")):
|
||||||
|
for filename in filenames:
|
||||||
|
if filename not in scripts:
|
||||||
|
scripts.append(filename)
|
||||||
while i < len(scripts):
|
while i < len(scripts):
|
||||||
check_script(app_path, scripts[i])
|
check_script(app_path, scripts[i])
|
||||||
i += 1
|
i += 1
|
||||||
|
|
Loading…
Reference in a new issue