pack: Add packages in the order in which they appear on the command line.
* guix/scripts/pack.scm (guix-pack)[manifest-from-args](packages): Reverse order of packages taken from OPTS.
This commit is contained in:
parent
ec36339dfd
commit
9bbaf2ae72
|
@ -944,7 +944,8 @@ Create a bundle of PACKAGE.\n"))
|
|||
(list (transform store package) output))
|
||||
((? package? package)
|
||||
(list (transform store package) "out")))
|
||||
(filter-map maybe-package-argument opts)))
|
||||
(reverse
|
||||
(filter-map maybe-package-argument opts))))
|
||||
(manifest-file (assoc-ref opts 'manifest)))
|
||||
(define properties
|
||||
(if (assoc-ref opts 'save-provenance?)
|
||||
|
|
Loading…
Reference in New Issue