mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Path can contain space :s
This commit is contained in:
parent
c0e77e690c
commit
d34e840d84
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ class App():
|
|||
|
||||
# Check for helpers usage that do not match version required in manifest...
|
||||
if self.yunohost_version_req:
|
||||
cmd = "grep -IhEro 'ynh_\w+' %s/scripts" % self.path
|
||||
cmd = "grep -IhEro 'ynh_\w+' '%s/scripts'" % self.path
|
||||
helpers_used = subprocess.check_output(cmd, shell=True).decode('utf-8').strip().split("\n")
|
||||
helpers_used = sorted(set(helpers_used))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue