mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
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
1 changed files with 2 additions and 1 deletions
|
@ -944,7 +944,8 @@ (define (manifest-from-args store opts)
|
|||
(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 a new issue