mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
[mod] #16: temporarily comment license field check.
This commit is contained in:
parent
78f9d30950
commit
54201c50cf
1 changed files with 2 additions and 0 deletions
|
@ -115,12 +115,14 @@ def check_manifest(manifest):
|
||||||
if pf == 1:
|
if pf == 1:
|
||||||
print_right("\"packaging_format\" field is good")
|
print_right("\"packaging_format\" field is good")
|
||||||
|
|
||||||
|
"""
|
||||||
if "license" in manifest and manifest["license"] != "free" and manifest["license"] != "non-free":
|
if "license" in manifest and manifest["license"] != "free" and manifest["license"] != "non-free":
|
||||||
print_wrong(
|
print_wrong(
|
||||||
"You should specify 'free' or 'non-free' software package in the license field.")
|
"You should specify 'free' or 'non-free' software package in the license field.")
|
||||||
return_code = 1
|
return_code = 1
|
||||||
elif "license" in manifest:
|
elif "license" in manifest:
|
||||||
print_right("\"licence\" key value is good")
|
print_right("\"licence\" key value is good")
|
||||||
|
"""
|
||||||
|
|
||||||
if "multi_instance" in manifest and manifest["multi_instance"] != 1 and manifest["multi_instance"] != 0:
|
if "multi_instance" in manifest and manifest["multi_instance"] != 1 and manifest["multi_instance"] != 0:
|
||||||
print_wrong(
|
print_wrong(
|
||||||
|
|
Loading…
Reference in a new issue