From 06d17d6d67724d18ddbcfa77d5a7431566a0d4c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 10 Jul 2022 15:17:19 +0200 Subject: [PATCH] build: Specify check kwarg in run_command Meson now warns that the default will change in a future version, so set it explicitly to maintain the existing behavior (and shut up the meson warning). Part-of: --- subprojects/extensions-app/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subprojects/extensions-app/meson.build b/subprojects/extensions-app/meson.build index a379ae2f2..57c11fd6f 100644 --- a/subprojects/extensions-app/meson.build +++ b/subprojects/extensions-app/meson.build @@ -6,7 +6,9 @@ project('gnome-extensions-app', if get_option('profile') == 'development' profile = '.Devel' - vcs_tag = run_command('git', 'rev-parse', '--short', '@').stdout().strip() + vcs_tag = run_command('git', 'rev-parse', '--short', '@', + check: false, + ).stdout().strip() else profile = '' vcs_tag = ''