[enh] rename repository: checker –> linter.

This commit is contained in:
Moul 2016-04-28 19:15:41 +02:00
parent d36881b7e2
commit f66e1e3cc1
2 changed files with 3 additions and 3 deletions

View file

@ -5,8 +5,8 @@ Checker for YunoHost applications packages
## Use
```sh
git clone https://github.com/YunoHost/package_checker
cd package_checker
git clone https://github.com/YunoHost/package_linter
cd package_linter
git clone https://github.com/<account>/<app>_ynh
./package_checker.py <app>_ynh
```

View file

@ -15,7 +15,7 @@ class c:
UNDERLINE = '\033[4m'
def header(app_path):
print(c.UNDERLINE + c.HEADER + c.BOLD + "YUNOHOST APP PACKAGE CHECKER\n" + c.END)
print(c.UNDERLINE + c.HEADER + c.BOLD + "YUNOHOST APP PACKAGE LINTER\n" + c.END)
print("App packaging documentation: https://yunohost.org/#/packaging_apps")
print("App package example: https://github.com/YunoHost/example_ynh\n")
print("Checking " + c.BOLD + app_path + c.END + " package\n")