From b0da9a32d4a11e2f3d89da6ac012614fe241b9d9 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Fri, 24 Jan 2020 08:48:10 -0500 Subject: [PATCH] Add LICENSES and licenses to license detection Per #260, a "LICENSES" directory is recommended by FSF Europe as part of the REUSE program. --- gitsrht/blueprints/repo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitsrht/blueprints/repo.py b/gitsrht/blueprints/repo.py index 85da77d..977050c 100644 --- a/gitsrht/blueprints/repo.py +++ b/gitsrht/blueprints/repo.py @@ -110,6 +110,7 @@ def summary(owner, repo): "COPYING.txt", "copying.txt", "LICENSE.md", "license.md", "COPYING.md", "copying.md", + "LICENSES", "licenses", ]: if path in tip.tree: license = True -- 2.38.4