From 954b6e920f38e48ec52ac753bc380d56b47799a9 Mon Sep 17 00:00:00 2001 From: turbobastii <10424668+turbobastii@users.noreply.github.com> Date: Sat, 1 Oct 2022 09:33:54 +0200 Subject: [PATCH] Fix meson warning for run_command --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 1a9fa70..9b14082 100644 --- a/meson.build +++ b/meson.build @@ -1,3 +1,3 @@ project('appstream-data-pantheon') -run_script = run_command('bash', meson.project_name() + '.sh') +run_script = run_command('bash', meson.project_name() + '.sh', check: false)