From 5dba3872b4a006ae03a04357b95cfc8829143000 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 31 Jul 2024 02:59:25 +0000 Subject: [PATCH] Fix 'Git error: unable to parse OID - contains invalid characters' issue. With Trisquel 11 (aramo) and its guix package (guix 1.3.0) using 'guix time-machine --commit=v1.4.0' fails like that: $ guix time-machine --commit=v1.4.0 -- describe guix time-machine: error: Git error: unable to parse OID - contains invalid characters But if we use the real commit hash instead of the tag name, the same command works fine: $ guix time-machine --commit=8e2f32cee982d42a79e53fc1e9aa7b8ff0514714 -- describe guix 8e2f32c repository URL: https://git.savannah.gnu.org/git/guix.git commit: 8e2f32cee982d42a79e53fc1e9aa7b8ff0514714 Signed-off-by: Denis 'GNUtoo' Carikli Acked-by: Adrien Bourmault --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5f29cf9..6493482 100644 --- a/configure.ac +++ b/configure.ac @@ -41,7 +41,7 @@ AC_SUBST([GUIX_BUILD_MAX_CORES], []) # to start downloading Guix 1.4.0 packages. So that can make things # a lot faster. -AC_SUBST([GUIX_REVISION], [v1.4.0]) +AC_SUBST([GUIX_REVISION], [8e2f32cee982d42a79e53fc1e9aa7b8ff0514714]) # --enable-kvm AC_ARG_ENABLE(kvm,