[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33454] [PATCH] describe: Delete directory argument from 'display-ch
From: |
Oleg Pykhalov |
Subject: |
[bug#33454] [PATCH] describe: Delete directory argument from 'display-checkout-info'. |
Date: |
Wed, 21 Nov 2018 17:27:06 +0300 |
This commit is a following 1255400faabfcf0ca1666d17f2f34ea0d49f6b1f which
added unused optional 'directory' argument.
* guix/scripts/describe.scm (display-checkout-info): Delete directory
argument.
---
guix/scripts/describe.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm
index d817d7f7c..761f212f0 100644
--- a/guix/scripts/describe.scm
+++ b/guix/scripts/describe.scm
@@ -84,11 +84,11 @@ Display information about the channels currently in
use.\n"))
(format #t (G_ "~%;; warning: GUIX_PACKAGE_PATH=\"~a\"~%")
string))))))
-(define* (display-checkout-info fmt #:optional directory)
+(define (display-checkout-info fmt)
"Display information about the current checkout according to FMT, a symbol
denoting the requested format. Exit if the current directory does not lie
within a Git checkout."
- (let* ((program (or directory (car (command-line))))
+ (let* ((program (car (command-line)))
(directory (catch 'git-error
(lambda ()
(repository-discover (dirname program)))
--
2.19.1