mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
More gentle warning when failing to parse lines
This commit is contained in:
parent
5b4c4a81b9
commit
73a1eb528a
1 changed files with 14 additions and 12 deletions
|
@ -57,21 +57,18 @@ def print_header(str):
|
||||||
print("\n [" + c.BOLD + c.HEADER + str.title() + c.END + "]\n")
|
print("\n [" + c.BOLD + c.HEADER + str.title() + c.END + "]\n")
|
||||||
|
|
||||||
|
|
||||||
def print_right(str):
|
def print_warning_not_reliable(str):
|
||||||
print(c.OKGREEN + "✔", str, c.END)
|
print(c.MAYBE_FAIL + "?", str, c.END)
|
||||||
|
|
||||||
|
|
||||||
def print_warning(str):
|
def print_warning(str):
|
||||||
print(c.WARNING + "!", str, c.END)
|
print(c.WARNING + "!", str, c.END)
|
||||||
|
|
||||||
|
|
||||||
def print_error(str, reliable=True):
|
def print_error(str):
|
||||||
if reliable:
|
global return_code
|
||||||
global return_code
|
return_code = 1
|
||||||
return_code = 1
|
print(c.FAIL + "✘", str, c.END)
|
||||||
print(c.FAIL + "✘", str, c.END)
|
|
||||||
else:
|
|
||||||
print(c.MAYBE_FAIL + "?", str, c.END)
|
|
||||||
|
|
||||||
|
|
||||||
def urlopen(url):
|
def urlopen(url):
|
||||||
|
@ -459,13 +456,18 @@ class Script():
|
||||||
# Merge lines when ending with \
|
# Merge lines when ending with \
|
||||||
lines = '\n'.join(lines).replace("\\\n", "").split("\n")
|
lines = '\n'.join(lines).replace("\\\n", "").split("\n")
|
||||||
|
|
||||||
|
some_parsing_failed = False
|
||||||
|
|
||||||
for line in lines:
|
for line in lines:
|
||||||
|
|
||||||
try:
|
try:
|
||||||
line = shlex.split(line, True)
|
line = shlex.split(line, True)
|
||||||
yield line
|
yield line
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print_warning("%s : Could not parse this line (%s) : %s" % (self.path, e, line))
|
if not some_parsing_failed:
|
||||||
|
print("Some lines could not be parsed in script %s. (That's probably not really critical)" % self.name)
|
||||||
|
some_parsing_failed = True
|
||||||
|
print_warning_not_reliable("%s : %s" % (e, line))
|
||||||
|
|
||||||
def contains(self, command):
|
def contains(self, command):
|
||||||
"""
|
"""
|
||||||
|
@ -510,10 +512,10 @@ class Script():
|
||||||
|
|
||||||
for modifying_cmd in modifying_cmds:
|
for modifying_cmd in modifying_cmds:
|
||||||
if any(modifying_cmd in cmd for cmd in cmds_before_exit):
|
if any(modifying_cmd in cmd for cmd in cmds_before_exit):
|
||||||
print_error(
|
print_warning_not_reliable(
|
||||||
"[YEP-2.4] 'ynh_die' or 'exit' command is executed with system modification before (cmd '%s').\n"
|
"[YEP-2.4] 'ynh_die' or 'exit' command is executed with system modification before (cmd '%s').\n"
|
||||||
"This system modification is an issue if a verification exit the script.\n"
|
"This system modification is an issue if a verification exit the script.\n"
|
||||||
"You should move this verification before any system modification." % modifying_cmd, False
|
"You should move this verification before any system modification." % modifying_cmd
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue