mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Ugh, path can have spaces -.-
This commit is contained in:
parent
94360abfbc
commit
0e8e5ba043
1 changed files with 1 additions and 1 deletions
|
@ -846,7 +846,7 @@ class Script():
|
|||
"https://github.com/YunoHost-Apps/Experimental_helpers/tree/master/ynh_add_extra_apt_repos )"
|
||||
)
|
||||
|
||||
helpers_after_official = subprocess.check_output("head -n 30 %s | grep -A 10 '^ *source */usr/share/yunohost/helpers' | grep '^ *source' | tail -n +2" % self.path, shell=True).decode("utf-8")
|
||||
helpers_after_official = subprocess.check_output("head -n 30 '%s' | grep -A 10 '^ *source */usr/share/yunohost/helpers' | grep '^ *source' | tail -n +2" % self.path, shell=True).decode("utf-8")
|
||||
helpers_after_official = helpers_after_official.replace("source", "").replace(" ", "").strip()
|
||||
if helpers_after_official:
|
||||
helpers_after_official = helpers_after_official.split("\n")
|
||||
|
|
Loading…
Reference in a new issue