summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2022-07-10 15:17:19 +0200
committerFlorian Müllner <fmuellner@gnome.org>2022-08-11 13:17:01 +0200
commitaac7301fb5c90f7c2d744235321007ebe2bf6f14 (patch)
treee9caa6ac12d93c419ea3ad5c06ddee38672e86d6
parent725d5c0960580e4387ede1707c2dea714b60e55a (diff)
downloadgnome-shell-aac7301fb5c90f7c2d744235321007ebe2bf6f14.tar.gz
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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2350> (cherry picked from commit 06d17d6d67724d18ddbcfa77d5a7431566a0d4c9)
-rw-r--r--subprojects/extensions-app/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/subprojects/extensions-app/meson.build b/subprojects/extensions-app/meson.build
index c39760330..148d0c683 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 = ''