diff options
author | jgart <jgart@dismail.de> | 2022-11-13 15:43:24 -0600 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-11-19 19:54:15 +0100 |
commit | b50be211c0c58d8d6bc19ba19dd98ba638ae26e5 (patch) | |
tree | a7e71b241c85ea8835c5e01fb059db00d3eac69b /guix/scripts | |
parent | f1354e792676829843908c4ed0f246dccf26bc1a (diff) |
scripts: describe: Add branch information to recutils output.
* guix/scripts/describe.scm (channel->recutils): Add branch information.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/describe.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm index e2233c78a5..80cd0ce00a 100644 --- a/guix/scripts/describe.scm +++ b/guix/scripts/describe.scm @@ -137,6 +137,7 @@ Display information about the channels currently in use.\n")) (format port "name: ~a~%" (channel-name channel)) (format port "url: ~a~%" (channel-url channel)) + (format port "branch: ~a~%" (channel-branch channel)) (format port "commit: ~a~%" (channel-commit channel)) (when intro (format port "introductioncommit: ~a~%" |