summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-09-04 19:13:33 +0200
committerLudovic Courtès <ludo@gnu.org>2022-09-04 23:10:10 +0200
commit9e59dbcd6cc37ee65236edf23a9b32338536e036 (patch)
treed6d28363192e12e22b75cad444553b9cb872cb9a
parent7a2acbdc5a9eed7c5dc3fe947f54fbebd89c0892 (diff)
guix describe: Adjust test to latest changes.
This is a followup to 64a070717c3de32332201df5d6d2d52a7f99dce9. * tests/guix-describe.sh: Add trailing slash when checking URL.
-rw-r--r--tests/guix-describe.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/guix-describe.sh b/tests/guix-describe.sh
index af523f0a0be..ca7b63ce3b5 100644
--- a/tests/guix-describe.sh
+++ b/tests/guix-describe.sh
@@ -1,5 +1,5 @@
1# GNU Guix --- Functional package management for GNU 1# GNU Guix --- Functional package management for GNU
2# Copyright © 2018 Ludovic Courtès <ludo@gnu.org> 2# Copyright © 2018, 2022 Ludovic Courtès <ludo@gnu.org>
3# 3#
4# This file is part of GNU Guix. 4# This file is part of GNU Guix.
5# 5#
@@ -39,7 +39,7 @@ then
39 fi 39 fi
40 guix describe -f channels 40 guix describe -f channels
41 case "`guix describe -f channels | grep url`" in 41 case "`guix describe -f channels | grep url`" in
42 *"(url \"$abs_top_srcdir\")") true;; 42 *"(url \"$abs_top_srcdir/\")") true;;
43 *) false;; 43 *) false;;
44 esac 44 esac
45else 45else