mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
scripts: import: elpa: Warn when version is specified.
* guix/scripts/import/elpa.scm (guix-import-elpa): Warn when version is specified. Signed-off-by: Josselin Poiret <dev@jpoiret.xyz>
This commit is contained in:
parent
0540f4e20d
commit
b89ab866bc
1 changed files with 6 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||
;;; Copyright © 2023 Simon Tournier <zimon.toutoune@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -91,7 +92,11 @@ (define (parse-options)
|
|||
(_ #f))
|
||||
(reverse opts))))
|
||||
(match args
|
||||
((package-name)
|
||||
((spec)
|
||||
(define-values (package-name version)
|
||||
(package-name->name+version spec))
|
||||
(when version
|
||||
(warning (G_ "this importer does not consider the version~%")))
|
||||
(if (assoc-ref opts 'recursive)
|
||||
(with-error-handling
|
||||
(map (match-lambda
|
||||
|
|
Loading…
Reference in a new issue