mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Merge pull request #26 from YunoHost/env_var_check_return_value
[mod] #18, #22: do not return an error value on env var check.
This commit is contained in:
commit
0fdc5c5208
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ def check_script(path, script_name, script_nbr):
|
|||
if script_nbr < 5:
|
||||
return_code = check_verifications_done_before_modifying_system(script) or return_code
|
||||
return_code = check_set_usage(script_name, script) or return_code
|
||||
return_code = check_arg_retrieval(script) or return_code
|
||||
check_arg_retrieval(script)
|
||||
|
||||
return return_code
|
||||
|
||||
|
|
Loading…
Reference in a new issue