Skip to content

Commit

Permalink
Merge pull request #136 from YunoHost/fix_conf_perisistent
Browse files Browse the repository at this point in the history
Avoid ssowat config persistent error on /doc
  • Loading branch information
alexAubin authored Apr 10, 2024
2 parents a51c679 + 2dd1357 commit 8a22ded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1066,8 +1066,8 @@ def references_to_superold_stuff(app):
def conf_json_persistent_tweaking(self):
if (
os.system(
"grep -q -nr '/etc/ssowat/conf.json.persistent' %s/*/* 2>/dev/null"
% self.path
"grep -nr '/etc/ssowat/conf.json.persistent' %s | grep -vq '^%s/doc' 2>/dev/null"
% (self.path, self.path)
)
== 0
):
Expand Down

0 comments on commit 8a22ded

Please sign in to comment.