From b1488c76536c991c363aff7fd08dc6a49b8fbb30 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 11 Nov 2017 18:38:27 +0100 Subject: git: Check whether 'clone-init-options' is defined. This is a followup to 195f0d05c3f64e17e84b2683a7045a14ec578d61. * guix/git.scm (clone*): Check whether 'clone-init-options' is defined before using it. --- guix/git.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'guix/git.scm') diff --git a/guix/git.scm b/guix/git.scm index ad4fc30c4b..7a83b56216 100644 --- a/guix/git.scm +++ b/guix/git.scm @@ -58,7 +58,10 @@ make sure no empty directory is left behind." ;; Note: Explicitly pass options to work around the invalid default ;; value in Guile-Git: . - (clone url directory (clone-init-options))) + (if (module-defined? (resolve-interface '(git)) + 'clone-init-options) + (clone url directory (clone-init-options)) + (clone url directory))) (lambda _ (false-if-exception (rmdir directory))))) -- cgit v1.2.3