From 5f70d387a5085e50074171f4e21e680c9967e5b7 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 22 Jun 2023 22:07:32 +0200 Subject: [PATCH] We use annotated tags now, so git describe no longer needs --tags to work --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8adc9996..af8314fb 100644 --- a/meson.build +++ b/meson.build @@ -15,7 +15,7 @@ release = release.strip() # Falls back to a file called "VERSION" or the string "Unknown" otherwise git = find_program('git', required: false) if git.found() - rv = run_command(git, 'describe', '--tags', check: false) + rv = run_command(git, 'describe', check: false) version = rv.stdout().strip() if rv.returncode() != 0 fs = import('fs')