import: go: Fix goproxy option argument's format.
Commit a8b927a562
Added new procedure go-module-available-versions use
'string-append' to GOPROXY, but 'string->symbol' let GOPROXY is a symbol (it
must be a string), which would lead to wrong-type-arg errors in the
'string-append' procedure.
* guix/scripts/import/go.scm (%options)[goproxy]: Remove call to
'string->symbol'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
905ecd78a7
commit
d456232712
1 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -68,9 +69,7 @@ that are not yet in Guix"))
|
||||||
(alist-cons 'recursive #t result)))
|
(alist-cons 'recursive #t result)))
|
||||||
(option '(#\p "goproxy") #t #f
|
(option '(#\p "goproxy") #t #f
|
||||||
(lambda (opt name arg result)
|
(lambda (opt name arg result)
|
||||||
(alist-cons 'goproxy
|
(alist-cons 'goproxy arg (alist-delete 'goproxy result))))
|
||||||
(string->symbol arg)
|
|
||||||
(alist-delete 'goproxy result))))
|
|
||||||
(option '("pin-versions") #f #f
|
(option '("pin-versions") #f #f
|
||||||
(lambda (opt name arg result)
|
(lambda (opt name arg result)
|
||||||
(alist-cons 'pin-versions? #t result)))
|
(alist-cons 'pin-versions? #t result)))
|
||||||
|
|
Reference in a new issue