summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilal Elmoussaoui <bil.elmoussaoui@gmail.com>2019-01-15 11:24:44 +0000
committerBilal Elmoussaoui <bil.elmoussaoui@gmail.com>2019-01-15 11:24:44 +0000
commit62a28f0e4d99f436e2f5f630424377b48ef1072d (patch)
tree4ef941c8270d2abc4a9899b5ca588435165a4b95
parent2eed21b2dd3ec0cdd701f9c18e1e2582c69bdad8 (diff)
downloadnautilus-62a28f0e4d99f436e2f5f630424377b48ef1072d.tar.gz
Meson: validate appdata file without network access
Network access is restricted on Flatpak build env, the same with other distros running tests for packages during the build process without network access. Fixes the pipeline from failing.
-rw-r--r--data/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build
index e7b67819f..c52a9695f 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -132,7 +132,7 @@ if appstream_util.found()
test(
'validate-appdata', appstream_util,
args: [
- 'validate-relax', appdata.full_path()
+ 'validate-relax', '--nonet', appdata.full_path()
]
)
endif