From 18d66a197190237d8e68c98fca5028316e616c6d Mon Sep 17 00:00:00 2001 From: jcamiel Date: Wed, 23 Nov 2022 15:21:10 +0100 Subject: [PATCH] Forbid dependencies that have GPL* licenses. --- bin/check/license.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/check/license.py b/bin/check/license.py index 8e190f15b..49a494928 100755 --- a/bin/check/license.py +++ b/bin/check/license.py @@ -18,7 +18,7 @@ def is_authorized(license: str) -> bool: def is_forbidden(license: str) -> bool: - for l in ["GNU"]: + for l in ["GPL"]: if l in license: return True return False