1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Guido_G=C3=BCnther?= <agx@sigxcpu.org>
Date: Wed, 17 Apr 2024 08:12:44 +0200
Subject: data: Avoid net access when checking metainfo
---
data/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/Makefile b/data/Makefile
index f92f0df..d9962a6 100644
--- a/data/Makefile
+++ b/data/Makefile
@@ -4,7 +4,7 @@ METAINFO = sm.puri.librem5-flash-image.metainfo.xml
all: check
check:
- appstreamcli validate $(METAINFO)
+ appstreamcli validate --no-net $(METAINFO)
install:
install -d $(DESTDIR)$(DATADIR)/metainfo
|