mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Fix scripts paths.
This commit is contained in:
parent
9dff3893a5
commit
0745977a5e
1 changed files with 4 additions and 4 deletions
|
@ -167,11 +167,11 @@ if __name__ == '__main__':
|
|||
check_files_exist(app_path)
|
||||
check_manifest(app_path + "/manifest.json")
|
||||
check_install_script(app_path + "/scripts/install")
|
||||
check_remove_script(app_path + "scripts/remove")
|
||||
check_remove_script(app_path + "/scripts/remove")
|
||||
"""
|
||||
check_upgrade_script(app_path + "scripts/upgrade")
|
||||
check_backup_script(app_path + "scripts/backup")
|
||||
check_restore_script(app_path + "scripts/restore")
|
||||
check_upgrade_script(app_path + "/scripts/upgrade")
|
||||
check_backup_script(app_path + "/scripts/backup")
|
||||
check_restore_script(app_path + "/scripts/restore")
|
||||
"""
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue