git: Work around wrong default argument of 'clone'.
Fixes <https://bugs.gnu.org/29238>. Reported by Benjamin Andresen <benny@in-ulm.de>. * guix/git.scm (clone*): Pass second argument to 'clone'.
This commit is contained in:
parent
179b7ac66d
commit
195f0d05c3
|
@ -55,7 +55,10 @@ make sure no empty directory is left behind."
|
|||
(with-throw-handler #t
|
||||
(lambda ()
|
||||
(mkdir-p directory)
|
||||
(clone url directory))
|
||||
|
||||
;; Note: Explicitly pass options to work around the invalid default
|
||||
;; value in Guile-Git: <https://bugs.gnu.org/29238>.
|
||||
(clone url directory (clone-init-options)))
|
||||
(lambda _
|
||||
(false-if-exception (rmdir directory)))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue