We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65acad commit 62a82aeCopy full SHA for 62a82ae
data/meson.build
@@ -33,10 +33,10 @@ if build_machine.system() == 'linux'
33
install_dir: join_paths(get_option('datadir'), 'appdata')
34
)
35
36
- appstream_util = find_program('appstream-util', required: false)
37
- if appstream_util.found()
38
- test('Validate appstream file', appstream_util,
39
- args: ['validate', appstream_file]
+ appstreamcli = find_program('appstreamcli', required: false)
+ if appstreamcli.found()
+ test('Validate appstream file', appstreamcli,
+ args: ['validate', '--no-net', '--explain', appstream_file]
40
41
endif
42
0 commit comments